[Fix](Nereids) change log level of warning of converting error to debug (#29660)

Co-authored-by: libinfeng <libinfeng@selectdb.com>
This commit is contained in:
LiBinfeng
2024-01-08 16:56:28 +08:00
committed by yiguolei
parent eea657a610
commit c10bcb666d

View File

@ -569,7 +569,7 @@ public class TypeCoercionUtils {
}
}
} catch (Exception e) {
LOG.warn("convert '{}' to type {} failed", value, dataType);
LOG.debug("convert '{}' to type {} failed", value, dataType);
}
return Optional.ofNullable(ret);