Files
nmage/assert/assert.go

14 lines
234 B
Go
Executable File

package assert
import (
"github.com/bloeys/nmage/consts"
"github.com/bloeys/nmage/logging"
)
func T(check bool, msg string, args ...any) {
if consts.Debug && !check {
logging.ErrLog.Panicf("Assert failed: "+msg, args...)
}
}