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
SafeParam(enum.STATE) logs the enum value, rather than the human readable string.
What did you want to happen?
Default behavior should be to log the string value of any param which implements the Stringer interface (so the above would be equivalent to SafeParam(enum.STATE.String()).
The text was updated successfully, but these errors were encountered:
What happened?
SafeParam(enum.STATE)
logs the enum value, rather than the human readable string.What did you want to happen?
Default behavior should be to log the string value of any param which implements the
Stringer
interface (so the above would be equivalent toSafeParam(enum.STATE.String())
.The text was updated successfully, but these errors were encountered: