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