Skip to content

Commit bfb7e13

Browse files
authoredOct 30, 2017
Merge pull request #1785 from sjenning/fix-msg
fix long du duration message
2 parents eaa3532 + cc77f13 commit bfb7e13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎container/common/fsHandler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func (fh *realFsHandler) trackUsage() {
132132
// if the long duration is persistent either because of slow
133133
// disk or lots of containers.
134134
longOp = longOp + time.Second
135-
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)
135+
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)
136136
}
137137
}
138138
}

0 commit comments

Comments
 (0)
Please sign in to comment.