mirror of
https://github.com/bloeys/nmage.git
synced 2025-12-29 13:28:20 +00:00
14 lines
234 B
Go
Executable File
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...)
|
|
}
|
|
}
|