Add debug logging about events

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
Alexander Morozov 2015-12-08 09:49:15 -08:00
parent 64705f5263
commit 4adf5d2c0d
1 changed files with 6 additions and 0 deletions

View File

@ -133,6 +133,12 @@ func (s *Supervisor) Start() error {
// so that nothing else is scheduled over the top of it.
goruntime.LockOSThread()
for e := range s.events {
logrus.WithFields(logrus.Fields{
"type": e.Type,
"timestamp": e.Timestamp,
"id": e.ID,
"bundlePath": e.BundlePath,
}).Debug("event received")
EventsCounter.Inc(1)
h, ok := s.handlers[e.Type]
if !ok {