Skip to content

Commit 7ebce02

Browse files
authored
Fix spacing in logs (#8954)
1 parent 0787510 commit 7ebce02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ydb/core/tx/schemeshard/schemeshard__operation_common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ class TDeleteParts: public TSubOperationState {
454454

455455
bool ProgressState(TOperationContext& context) override {
456456
LOG_INFO_S(context.Ctx, NKikimrServices::FLAT_TX_SCHEMESHARD,
457-
"[" << context.SS->TabletID() << "] " << DebugHint() << "ProgressState");
457+
"[" << context.SS->TabletID() << "] " << DebugHint() << " ProgressState");
458458
DeleteShards(context);
459459

460460
NIceDb::TNiceDb db(context.GetDB());
@@ -473,7 +473,7 @@ class TDeletePartsAndDone: public TDeleteParts {
473473

474474
bool ProgressState(TOperationContext& context) override {
475475
LOG_INFO_S(context.Ctx, NKikimrServices::FLAT_TX_SCHEMESHARD,
476-
"[" << context.SS->TabletID() << "] " << DebugHint() << "ProgressState");
476+
"[" << context.SS->TabletID() << "] " << DebugHint() << " ProgressState");
477477
DeleteShards(context);
478478

479479
context.OnComplete.DoneOperation(OperationId);
@@ -499,7 +499,7 @@ class TDone: public TSubOperationState {
499499

500500
bool ProgressState(TOperationContext& context) override {
501501
LOG_INFO_S(context.Ctx, NKikimrServices::FLAT_TX_SCHEMESHARD,
502-
"[" << context.SS->TabletID() << "] " << DebugHint() << "ProgressState");
502+
"[" << context.SS->TabletID() << "] " << DebugHint() << " ProgressState");
503503

504504
const auto* txState = context.SS->FindTx(OperationId);
505505

0 commit comments

Comments
 (0)