Skip to content

Commit

Permalink
fix(cdn): service logs: do not send struct (#5180)
Browse files Browse the repository at this point in the history
  • Loading branch information
sguiheux authored May 14, 2020
1 parent 2fae99d commit 2d84513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/hatchery/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func (c *Common) SendServiceLog(ctx context.Context, servicesLogs []sdk.ServiceL
log.Error(ctx, "SendServiceLog> unable to sign service log message: %v", err)
continue
}
c.ServiceLogger.WithField("Signature", signature).Log(logrus.InfoLevel, s)
c.ServiceLogger.WithField("Signature", signature).Log(logrus.InfoLevel, s.Val)
}
}

Expand Down

0 comments on commit 2d84513

Please sign in to comment.