wand/debug.go

24 lines
289 B
Go
Raw Normal View History

2025-09-05 03:19:00 +02:00
package wand
import (
"code.squareroundforest.org/arpio/notation"
"os"
"testing"
)
func debug(a ...any) {
if !testing.Testing() {
return
}
2025-09-06 02:46:28 +02:00
notation.Fprintln(os.Stderr, a...)
}
func debugw(a ...any) {
if !testing.Testing() {
return
}
2025-09-05 03:19:00 +02:00
notation.Fprintlnw(os.Stderr, a...)
}