package debug

import "git.sr.ht/~sbinet/go-arrow/internal/debug"

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.

Using Log

To enable runtime debug logs, build with the debug tag. When the debug tag is omitted, the code for logging will be omitted from the binary.

Index

Functions

func Assert

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

func Log(interface{})

Source Files

assert_off.go doc.go log_off.go

Version
v0.3.0 (latest)
Published
Feb 17, 2025
Platform
linux/amd64
Last checked
2 months ago

Tools for package owners.