Skip to content

Commit a63de5f

Browse files
committed
Fix typo in container log
The log prefix should be "stop" in DockerVM.Stop. Change-Id: I551b37f62238791ce9506aad2c558c7bca73c81f Signed-off-by: jiangyaoguo <[email protected]>
1 parent c891561 commit a63de5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/container/dockercontroller/dockercontroller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func (vm *DockerVM) Stop(ctxt context.Context, ccid ccintf.CCID, timeout uint, d
207207
id, _ := vm.GetVMName(ccid)
208208
client, err := cutil.NewDockerClient()
209209
if err != nil {
210-
dockerLogger.Debugf("start - cannot create client %s", err)
210+
dockerLogger.Debugf("stop - cannot create client %s", err)
211211
return err
212212
}
213213
id = strings.Replace(id, ":", "_", -1)

0 commit comments

Comments
 (0)