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

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


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 4530a41060c [Opt](log) change frequent INFO log to DEBUG log in 
ColumnObject #42336 (#42433)
4530a41060c is described below

commit 4530a41060cf3329f6c8e629237edadbee338e27
Author: lihangyu <[email protected]>
AuthorDate: Thu Oct 24 23:03:11 2024 +0800

    [Opt](log) change frequent INFO log to DEBUG log in ColumnObject #42336 
(#42433)
    
    cherry pick from #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 ef10e3b5f7b..af0074e797e 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