From cc77f13a2b83892c8535245ff868b08b645323cb Mon Sep 17 00:00:00 2001 From: Seth Jennings Date: Mon, 30 Oct 2017 10:00:47 -0500 Subject: [PATCH] fix long du message --- container/common/fsHandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/common/fsHandler.go b/container/common/fsHandler.go index cae0bc4b2a..01c66c4376 100644 --- a/container/common/fsHandler.go +++ b/container/common/fsHandler.go @@ -132,7 +132,7 @@ func (fh *realFsHandler) trackUsage() { // if the long duration is persistent either because of slow // disk or lots of containers. longOp = longOp + time.Second - glog.V(2).Infof("du and find on following dirs took %v: %v; will not log again for this container unless duration exceeds %d seconds.", duration, []string{fh.rootfs, fh.extraDir}, longOp) + glog.V(2).Infof("du and find on following dirs took %v: %v; will not log again for this container unless duration exceeds %v", duration, []string{fh.rootfs, fh.extraDir}, longOp) } } }