Logger is used for logging formatted messages.
| 947 | |
| 948 | // Logger is used for logging formatted messages. |
| 949 | type Logger interface { |
| 950 | // Printf must have the same semantics as log.Printf. |
| 951 | Printf(format string, args ...any) |
| 952 | } |
| 953 | |
| 954 | var ctxLoggerLock sync.Mutex |
| 955 |
no outgoing calls
no test coverage detected
searching dependent graphs…