From 74b62fc08a7f4dd4fd90b1c03c97676357281aed Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Mon, 20 May 2019 09:17:50 -0700 Subject: [PATCH] log subscriber pipeline type and kind --- operator/manager/manager.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/operator/manager/manager.go b/operator/manager/manager.go index 2823b522b..eb467da54 100644 --- a/operator/manager/manager.go +++ b/operator/manager/manager.go @@ -161,6 +161,8 @@ type Manager struct { func (m *Manager) Request(ctx context.Context, args *Request) (*core.Stage, error) { logger := logrus.WithFields( logrus.Fields{ + "kind": args.Kind, + "type": args.Type, "os": args.OS, "arch": args.Arch, "kernel": args.Kernel,