Log writes a debug message
(data ...any)
| 13 | |
| 14 | // Log writes a debug message |
| 15 | func Log(data ...any) { |
| 16 | if Enabled { |
| 17 | log.Println(data...) |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | // Logf writes a debug message using [fmt.Printf] arguments. |
| 22 | func Logf(format string, v ...any) { |
no outgoing calls
no test coverage detected