.. | ||
.gitignore | ||
buffered_disabled.go | ||
buffered_enabled.go | ||
buffered_uni.go | ||
caller.go | ||
consts.go | ||
dlog_disabled.go | ||
dlog_enabled.go | ||
doc.go | ||
LICENSE | ||
README.md | ||
state_disabled.go | ||
state_enabled.go | ||
withCaller_disabled.go | ||
withCaller_enabled.go | ||
withCaller_uni.go |
dlog
Simple build-time controlled debug log
How to use
Unbuffered
package main
import "github.com/kirillDanshin/dlog"
func main() {
a := []int{2, 4, 8, 16, 32, 64, 128, 256, 512}
b := "some string"
dlog.D(a) // D'ump `a`
dlog.P(b) // P'rint `b`
dlog.F("%s format", b) // F'ormatted print
dlog.Ln(b) // print'Ln `b`
}
Buffered
package main
import "github.com/kirillDanshin/dlog"
func main() {
log := dlog.NewBuffered()
defer log.Release()
log.D(a) // D'ump `a`
log.P(b) // P'rint `b`
log.F("%s format", b) // F'ormatted print
log.Ln(b) // print'Ln `b`
dlog.Ln(log) // or fmt.Println("log") etc.
}
Release
To disable logging in release build just run
go build
Debug
To enable logging in debug build run
go build -tags "debug"