DevPrintf logs using log.Printf only if running in dev mode
(format string, v ...any)
| 11 | |
| 12 | // DevPrintf logs using log.Printf only if running in dev mode |
| 13 | func DevPrintf(format string, v ...any) { |
| 14 | if wavebase.IsDevMode() { |
| 15 | log.Printf(format, v...) |
| 16 | } |
| 17 | } |
no test coverage detected