From 1102ac257b551feb3e048c731e4aa854e19011a2 Mon Sep 17 00:00:00 2001 From: allencloud Date: Mon, 1 Aug 2016 01:00:38 +0800 Subject: [PATCH] make container kill debug log readable Signed-off-by: allencloud --- daemon/kill.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/kill.go b/daemon/kill.go index 21645e5f49..8ccbd0ade9 100644 --- a/daemon/kill.go +++ b/daemon/kill.go @@ -55,7 +55,7 @@ func (daemon *Daemon) ContainerKill(name string, sig uint64) error { // or not running, or if there is a problem returned from the // underlying kill command. func (daemon *Daemon) killWithSignal(container *container.Container, sig int) error { - logrus.Debugf("Sending %d to %s", sig, container.ID) + logrus.Debugf("Sending kill signal %d to container %s", sig, container.ID) container.Lock() defer container.Unlock()