Signed-off-by: allencloud <allen.sun@daocloud.io>
| ... | ... |
@@ -55,7 +55,7 @@ func (daemon *Daemon) ContainerKill(name string, sig uint64) error {
|
| 55 | 55 |
// or not running, or if there is a problem returned from the |
| 56 | 56 |
// underlying kill command. |
| 57 | 57 |
func (daemon *Daemon) killWithSignal(container *container.Container, sig int) error {
|
| 58 |
- logrus.Debugf("Sending %d to %s", sig, container.ID)
|
|
| 58 |
+ logrus.Debugf("Sending kill signal %d to container %s", sig, container.ID)
|
|
| 59 | 59 |
container.Lock() |
| 60 | 60 |
defer container.Unlock() |
| 61 | 61 |
|