| 278 | } |
| 279 | |
| 280 | type Logger interface { |
| 281 | Debug(args ...interface{}) |
| 282 | Debugf(format string, args ...interface{}) |
| 283 | Info(args ...interface{}) |
| 284 | Infof(format string, args ...interface{}) |
| 285 | Warning(args ...interface{}) error |
| 286 | Warningf(format string, args ...interface{}) error |
| 287 | Error(args ...interface{}) error |
| 288 | Errorf(format string, args ...interface{}) error |
| 289 | Errore(err error) error |
| 290 | Fatal(args ...interface{}) error |
| 291 | Fatalf(format string, args ...interface{}) error |
| 292 | Fatale(err error) error |
| 293 | SetLevel(level log.LogLevel) |
| 294 | SetPrintStackTrace(printStackTraceFlag bool) |
| 295 | } |
| 296 | |
| 297 | type ContextConfig struct { |
| 298 | Client struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…