github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/tm2/pkg/iavl/logger.go (about) 1 package iavl 2 3 import ( 4 "fmt" 5 ) 6 7 func debug(format string, args ...interface{}) { 8 if false { 9 fmt.Printf(format, args...) 10 } 11 }