From 11376c24e45a4a5b89493fda74a18d2458acce2e Mon Sep 17 00:00:00 2001 From: Bradley Cicenas Date: Thu, 5 Jan 2017 23:23:55 +0000 Subject: [PATCH] remove unused output lines --- container.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/container.go b/container.go index be3b85d..c23d7eb 100644 --- a/container.go +++ b/container.go @@ -1,8 +1,6 @@ package main import ( - "fmt" - "github.com/fsouza/go-dockerclient" ) @@ -18,7 +16,6 @@ type Container struct { func (c *Container) Collect(client *docker.Client) { go func() { - fmt.Sprintf("starting collector for container: %s\n", c.id) opts := docker.StatsOptions{ ID: c.id, Stats: c.stats, @@ -26,7 +23,6 @@ func (c *Container) Collect(client *docker.Client) { Done: c.done, } client.Stats(opts) - fmt.Sprintf("stopping collector for container: %s\n", c.id) }() go func() {