Debug logs a debug message with "[Telemetry]" prefix
(msg string, args ...any)
| 21 | |
| 22 | // Debug logs a debug message with "[Telemetry]" prefix |
| 23 | func (tl *telemetryLogger) Debug(msg string, args ...any) { |
| 24 | tl.logger.Debug("[Telemetry] "+msg, args...) |
| 25 | } |
| 26 | |
| 27 | // Info logs an info message with "[Telemetry]" prefix |
| 28 | func (tl *telemetryLogger) Info(msg string, args ...any) { |
no outgoing calls
no test coverage detected