diff --git a/be/src/runtime/memory/mem_tracker.h b/be/src/runtime/memory/mem_tracker.h index 61cecf411d08fa..82b05fe544afc8 100644 --- a/be/src/runtime/memory/mem_tracker.h +++ b/be/src/runtime/memory/mem_tracker.h @@ -45,7 +45,7 @@ class MemTracker final { const std::string& label() const { return _label; } std::string log_usage() const { - return fmt::format("MemTracker Lame={}, Used={}({} B), Peak={}({} B)", _label, + return fmt::format("MemTracker name={}, Used={}({} B), Peak={}({} B)", _label, MemCounter::print_bytes(consumption()), consumption(), MemCounter::print_bytes(peak_consumption()), peak_consumption()); }