From c5bcd23d2b56c97757b1236852c19add344faeed Mon Sep 17 00:00:00 2001 From: AJ Bowen Date: Thu, 11 Apr 2019 16:44:12 +0200 Subject: [PATCH] Print instance fields, at Info rather than Debug level --- backend/gce.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/gce.go b/backend/gce.go index ccd3de5f1..ded4b2d44 100644 --- a/backend/gce.go +++ b/backend/gce.go @@ -1082,8 +1082,8 @@ func (p *gceProvider) stepInsertInstance(c *gceStartContext) multistep.StepActio context.LoggerFromContext(c.ctx).WithFields(logrus.Fields{ "self": "backend/gce_provider", - "instance": c.instance, - }).Debug("inserting instance") + "instance": fmt.Sprintf("%+v", c.instance), + }).Info("inserting instance") c.bootStart = time.Now().UTC()