[enhancement](log) remove some temp debug log (#25809)

* [enhancement](log) remove some temp debug log

* update
This commit is contained in:
zhangstar333
2023-10-24 18:17:04 +08:00
committed by GitHub
parent 3837e7b779
commit ac79cbaf66
2 changed files with 1 additions and 6 deletions

View File

@ -416,11 +416,6 @@ Status OlapTableBlockConvertor::_validate_data(RuntimeState* state, vectorized::
bool* stop_processing) {
for (int i = 0; i < _output_tuple_desc->slots().size(); ++i) {
SlotDescriptor* desc = _output_tuple_desc->slots()[i];
DCHECK(block->columns() > i)
<< "DEBUG LOG: block->columns(): " << block->columns() << " i: " << i
<< " block structure: \n"
<< block->dump_structure()
<< " \n_output_tuple_desc: " << _output_tuple_desc->debug_string();
block->get_by_position(i).column =
block->get_by_position(i).column->convert_to_full_column_if_const();
const auto& column = block->get_by_position(i).column;

View File

@ -420,7 +420,7 @@ public class OlapTable extends Table {
// Column maybe renamed, rebuild the column name map
indexMeta.initColumnNameMap();
}
LOG.info("after rebuild full schema. table {}, schema size: {}", id, fullSchema.size());
LOG.debug("after rebuild full schema. table {}, schema size: {}", id, fullSchema.size());
}
public boolean deleteIndexInfo(String indexName) {