Files
nmage/assert/assert.go
2022-07-23 22:51:57 +04:00

13 lines
212 B
Go
Executable File

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