File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -73,14 +73,15 @@ func (u *Updater) createComposeFileContainerMapping() []*ComposeFile {
7373 containers := GetWatchedRunningContainers ()
7474 cache := make (map [string ]* ComposeFile )
7575 for _ , container := range containers {
76+ log .Printf ("Watching container %s with ID %s...\n " , container .Name , container .ID )
7677 var composeFile * ComposeFile
7778 if curComposeFile , ok := cache [container .ComposeFile ]; ok {
7879 composeFile = curComposeFile
7980 } else {
8081 var err error
8182 composeFile , err = ParseComposeYaml (container .ComposeFile )
8283 if err != nil {
83- log .Printf ("Could not parse compose YAML: %s\n " , err )
84+ log .Printf ("Could not parse compose YAML %s : %s\n " , container . ComposeFile , err )
8485 continue
8586 }
8687 cache [container .ComposeFile ] = composeFile
You can’t perform that action at this time.
0 commit comments