fix output formatting

This commit is contained in:
yusing
2024-03-13 17:41:10 +00:00
parent a0f890fed7
commit e14eeb914f
5 changed files with 6 additions and 6 deletions

View File

@@ -193,7 +193,7 @@ func (p *Provider) grWatchDockerChanges() {
return
case msg := <-msgChan:
// TODO: handle actor only
p.Logf("Event", "%s %s caused rebuild", msg.Action, msg.Actor.Attributes["name"])
p.Logf("Event", "container %s %s caused rebuild", msg.Actor.Attributes["name"], msg.Action)
p.StopAllRoutes()
p.BuildStartRoutes()
case err := <-errChan: