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
// Logger interface is to abstract the logging from Resty. Gives control to// the Resty users, choice of the logger.typeLoggerinterface {
Errorf(formatstring, v...interface{})
Warnf(formatstring, v...interface{})
Debugf(formatstring, v...interface{})
}
The goal is to make the Resty logger interface based in v2 with minimal methods that Resty user could choose their choice of the logger.
Also if possible add default implementation using
log.Logger
compliant with the new interface.The text was updated successfully, but these errors were encountered: