You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cli.Config.Logger.Debugf("Request processed. The result: %+v", result)
The request response in this log is being stringified into the log message, making it more difficult to gain insights programmatically from the logs. The logger object is from Logrus, so we should use a .WithField() for the result.
The text was updated successfully, but these errors were encountered:
opsgenie-go-sdk-v2/client/client.go
Line 495 in d0825cd
The request response in this log is being stringified into the log message, making it more difficult to gain insights programmatically from the logs. The logger object is from Logrus, so we should use a .WithField() for the result.
The text was updated successfully, but these errors were encountered: