1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-30 09:45:15 +01:00

chore: moves warn log to debug

This commit is contained in:
Amir Raminfar
2023-11-17 15:43:41 -08:00
parent 07147d1e5c
commit 0ad8f32588

View File

@@ -247,7 +247,7 @@ func createLocalClient(args args, localClientFactory func(map[string][]string) (
if err == nil {
_, err := dockerClient.ListContainers()
if err != nil {
log.Warnf("Could not connect to local Docker Engine: %s", err)
log.Debugf("Could not connect to local Docker Engine: %s", err)
} else {
log.Debugf("Connected to local Docker Engine")
return dockerClient