Logger interface for logging functionality
| 7 | |
| 8 | // Logger interface for logging functionality |
| 9 | type Logger interface { |
| 10 | Debugf(format string, args ...any) |
| 11 | Warningf(format string, args ...any) |
| 12 | Errorf(format string, args ...any) |
| 13 | Infof(format string, args ...any) |
| 14 | } |
| 15 | |
| 16 | // Context represents a metric collection context with compile-time type safety |
| 17 | type Context[T any] struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…