(ctx context.Context, format string, args ...interface{})
| 112 | var debugLoggerFunc LogFunc |
| 113 | |
| 114 | func logDebug(ctx context.Context, format string, args ...interface{}) { |
| 115 | if debugLoggerFunc != nil { |
| 116 | debugLoggerFunc(ctx, format, args...) |
| 117 | } else { |
| 118 | defaultLogger(ctx, format, args...) |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | var infoLoggerFunc LogFunc |
| 123 |