Skip to content

Commit 54796f2

Browse files
authored
More logging (#313)
1 parent 019c0ff commit 54796f2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

internal/docker/deployer.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,13 @@ func deployImage(
221221
if err != nil {
222222
return nil, err
223223
}
224+
for _, w := range body.Warnings {
225+
log.Printf("WARN: ContainerCreate: %s", w)
226+
}
224227

225228
containerID := body.ID
226229
if cfg.DebugLoggingEnabled {
227-
log.Printf("%s: Created container %s", contextStr, containerID)
230+
log.Printf("%s: Created container '%s' using image '%s' on network '%s'", contextStr, containerID, imageID, networkID)
228231
}
229232

230233
// Create the application service files

0 commit comments

Comments
 (0)