Skip to content

Commit 2d84513

Browse files
authored
fix(cdn): service logs: do not send struct (#5180)
1 parent 2fae99d commit 2d84513

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/hatchery/serve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ func (c *Common) SendServiceLog(ctx context.Context, servicesLogs []sdk.ServiceL
226226
log.Error(ctx, "SendServiceLog> unable to sign service log message: %v", err)
227227
continue
228228
}
229-
c.ServiceLogger.WithField("Signature", signature).Log(logrus.InfoLevel, s)
229+
c.ServiceLogger.WithField("Signature", signature).Log(logrus.InfoLevel, s.Val)
230230
}
231231
}
232232

0 commit comments

Comments
 (0)