fix: wrong import
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2023-06-15 14:35:28 +02:00
parent 42932f91d2
commit 8bbf77ccff
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ package main
import (
"github.com/docker/docker/api/types"
"github.com/docker/docker/client"
"github.com/google/martian/log"
"log"
"strings"
)
@ -34,7 +34,7 @@ func dumpAllDatabases(c *client.Client) {
for containerID, dumper := range store {
err := dumper.Dump(c)
if err != nil {
log.Errorf("Could not dump database from container %s: %v", containerID, err)
log.Printf("Could not dump database from container %s: %v", containerID, err)
}
}
}