Skip to content

Commit f2a056e

Browse files
committed
Remove redundant container name from logs
1 parent 3ed1dca commit f2a056e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/base/orchestrator/src/coordinator.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2558,9 +2558,9 @@ impl TerminateContainer {
25582558
.insert(name.into());
25592559

25602560
if was_inserted {
2561-
info!(%name, "Started tracking container");
2561+
info!("Started tracking container");
25622562
} else {
2563-
error!(%name, "Started tracking container, but it was already tracked");
2563+
error!("Started tracking container, but it was already tracked");
25642564
}
25652565
}
25662566

@@ -2572,9 +2572,9 @@ impl TerminateContainer {
25722572
.remove(name);
25732573

25742574
if was_tracked {
2575-
info!(%name, "Stopped tracking container");
2575+
info!("Stopped tracking container");
25762576
} else {
2577-
error!(%name, "Stopped tracking container, but it was not in the tracking set");
2577+
error!("Stopped tracking container, but it was not in the tracking set");
25782578
}
25792579
}
25802580

0 commit comments

Comments
 (0)