No debug log for empty memtables

This commit is contained in:
Hongqin-Li
2023-05-25 23:11:38 +00:00
committed by ob-robot
parent 16288e642b
commit ceccbab67c

View File

@ -141,7 +141,9 @@ int ObTabletTableStore::deserialize(
if (OB_SUCCESS != (tmp_ret = init_read_cache())) {
LOG_WARN("failed to init read cache iterator", K(tmp_ret));
}
FLOG_INFO("succeed to deserialize table store", K(major_tables_), K(minor_tables_), K(memtables_), K(PRINT_TS(*this)));
if (!memtables_.empty()) {
FLOG_INFO("succeed to deserialize table store", K(major_tables_), K(minor_tables_), K(memtables_), K(PRINT_TS(*this)));
}
}
return ret;