17 lines
235 B
Go
Raw Normal View History

2025-01-05 06:30:54 +01:00
package log
import (
"fmt"
"git-roast/internal/config"
)
func Printf(format string, a ...any) {
_, _ = fmt.Printf(format, a...)
}
func Debugf(format string, a ...any) {
if config.Verbose {
_, _ = fmt.Printf(format, a...)
}
}