Add debug logging about events
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
parent
64705f5263
commit
4adf5d2c0d
1 changed files with 6 additions and 0 deletions
|
@ -133,6 +133,12 @@ func (s *Supervisor) Start() error {
|
||||||
// so that nothing else is scheduled over the top of it.
|
// so that nothing else is scheduled over the top of it.
|
||||||
goruntime.LockOSThread()
|
goruntime.LockOSThread()
|
||||||
for e := range s.events {
|
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)
|
EventsCounter.Inc(1)
|
||||||
h, ok := s.handlers[e.Type]
|
h, ok := s.handlers[e.Type]
|
||||||
if !ok {
|
if !ok {
|
||||||
|
|
Loading…
Reference in a new issue