(ctx context.Context, key string)
| 152 | var timerBeginFunc LogTimerBeginFunc |
| 153 | |
| 154 | func timerBegin(ctx context.Context, key string) string { |
| 155 | if timerBeginFunc != nil { |
| 156 | return timerBeginFunc(ctx, key) |
| 157 | } |
| 158 | return "" |
| 159 | } |
| 160 | |
| 161 | var timerEndFunc LogTimerEndFunc |
| 162 |
no outgoing calls
no test coverage detected