...
Package debug
import "github.com/apache/arrow/go/v15/parquet/internal/debug"
- Overview
- Index
Package debug provides APIs for conditional runtime assertions and debug logging.
Using Assert
To enable runtime assertions, build with the assert tag. When the assert tag is omitted,
the code for the assertion will be omitted from the binary.
func Assert(cond bool, msg interface{})
Assert will panic with msg if cond is false.
msg must be a string, func() string or fmt.Stringer.
func Log(interface{})