(ctx context.Context, key string)
| 161 | var timerEndFunc LogTimerEndFunc |
| 162 | |
| 163 | func timerEnd(ctx context.Context, key string) { |
| 164 | if timerEndFunc != nil { |
| 165 | timerEndFunc(ctx, key) |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | type LogFunc func(ctx context.Context, msg string, v ...interface{}) |
| 170 | type LogTimerBeginFunc func(ctx context.Context, key string) string |
no outgoing calls
no test coverage detected