Skip to content

Commit b0efa0f

Browse files
reduce logging volume (#6418)
1 parent f3484a6 commit b0efa0f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ydb/core/tx/columnshard/columnshard__write.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ void TColumnShard::OverloadWriteFail(const EOverloadStatus overloadReason, const
4242
Y_ABORT("invalid function usage");
4343
}
4444

45-
LOG_S_INFO("Write (overload) " << writeData.GetSize() << " bytes into pathId " << writeData.GetWriteMeta().GetTableId()
46-
<< " overload reason: [" << overloadReason << "]"
47-
<< " at tablet " << TabletID());
45+
AFL_TRACE(NKikimrServices::TX_COLUMNSHARD)("event", "write_overload")("size", writeData.GetSize())
46+
("path_id", writeData.GetWriteMeta().GetTableId())("reason", overloadReason);
4847

4948
ctx.Send(writeData.GetWriteMeta().GetSource(), event.release(), 0, cookie);
5049
}

0 commit comments

Comments
 (0)