Add logging for started supervisor

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
Alexander Morozov
2015-12-08 09:37:31 -08:00
parent d9e8fe62cb
commit 9f5caf529c
4 changed files with 13 additions and 0 deletions

View File

@@ -149,6 +149,10 @@ func (s *Supervisor) Start() error {
close(e.Err)
}
}()
logrus.WithFields(logrus.Fields{
"runtime": s.runtime.Type(),
"stateDir": s.stateDir,
}).Debug("Supervisor started")
return nil
}