mirror of https://github.com/docker/docs.git
Merge pull request #22361 from duglin/removeCR
Remain extra \n on INFO log msg
This commit is contained in:
commit
1158c921ab
|
@ -376,7 +376,7 @@ func (r *remote) runContainerdDaemon() error {
|
||||||
if err := cmd.Start(); err != nil {
|
if err := cmd.Start(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
logrus.Infof("New containerd process, pid: %d\n", cmd.Process.Pid)
|
logrus.Infof("New containerd process, pid: %d", cmd.Process.Pid)
|
||||||
|
|
||||||
if _, err := f.WriteString(fmt.Sprintf("%d", cmd.Process.Pid)); err != nil {
|
if _, err := f.WriteString(fmt.Sprintf("%d", cmd.Process.Pid)); err != nil {
|
||||||
utils.KillProcess(cmd.Process.Pid)
|
utils.KillProcess(cmd.Process.Pid)
|
||||||
|
|
Loading…
Reference in New Issue