mirror of
https://github.com/versity/versitygw.git
synced 2026-01-03 10:35:15 +00:00
12 lines
141 B
Go
12 lines
141 B
Go
package logger
|
|
|
|
import "log"
|
|
|
|
var Debug *bool
|
|
|
|
func PrintDebug(format string, args ...any) {
|
|
if *Debug {
|
|
log.Printf(format, args...)
|
|
}
|
|
}
|