(format string, args ...any)
| 14 | } |
| 15 | |
| 16 | func Debugf(format string, args ...any) { |
| 17 | defaultLogger.logMsg(DebugLevel, fmt.Sprintf(format, args...)) |
| 18 | } |
| 19 | |
| 20 | func Info(args ...any) { |
| 21 | defaultLogger.logMsg(InfoLevel, fmt.Sprint(args...)) |
no test coverage detected