remove superfluous logging

This commit is contained in:
Simon Aronsson 2019-05-12 09:10:45 +02:00
parent ad90af6276
commit a98e2f67ff

View file

@ -59,8 +59,6 @@ func (client dockerClient) ListContainers(fn Filter) ([]Container, error) {
cs := []Container{}
bg := context.Background()
log.Info("include stopped: ", client.includeStopped)
if client.includeStopped {
log.Debug("Retrieving containers including stopped and exited")
} else {
@ -73,7 +71,7 @@ func (client dockerClient) ListContainers(fn Filter) ([]Container, error) {
types.ContainerListOptions{
Filters: filter,
})
log.Info(containers)
if err != nil {
return nil, err
}