Skip to content

Commit

Permalink
[Opt](log) change frequent INFO log to DEBUG log in ColumnObject
Browse files Browse the repository at this point in the history
  • Loading branch information
eldenmoon committed Oct 23, 2024
1 parent efc0621 commit 761c469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/vec/columns/column_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 761c469

Please sign in to comment.