This is an automated email from the ASF dual-hosted git repository.

eldenmoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a429fbbbae [Opt](log) change frequent INFO log to DEBUG log in 
ColumnObject (#42336)
6a429fbbbae is described below

commit 6a429fbbbae077acb8f1d63b5d860869c2c81086
Author: lihangyu <[email protected]>
AuthorDate: Thu Oct 24 15:14:14 2024 +0800

    [Opt](log) change frequent INFO log to DEBUG log in ColumnObject (#42336)
---
 be/src/vec/columns/column_object.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/vec/columns/column_object.cpp 
b/be/src/vec/columns/column_object.cpp
index dcebad6495c..acf27cac848 100644
--- a/be/src/vec/columns/column_object.cpp
+++ b/be/src/vec/columns/column_object.cpp
@@ -428,8 +428,8 @@ void ColumnObject::Subcolumn::insert(Field field, FieldInfo 
info) {
     } else if (least_common_type.get_base_type_id() != base_type.idx && 
!base_type.is_nothing()) {
         if (schema_util::is_conversion_required_between_integers(
                     base_type.idx, least_common_type.get_base_type_id())) {
-            LOG_EVERY_N(INFO, 100) << "Conversion between " << 
getTypeName(base_type.idx) << " and "
-                                   << 
getTypeName(least_common_type.get_type_id());
+            VLOG_DEBUG << "Conversion between " << getTypeName(base_type.idx) 
<< " and "
+                       << getTypeName(least_common_type.get_type_id());
             DataTypePtr base_data_type;
             TypeIndex base_data_type_id;
             get_least_supertype_jsonb(


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to