Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 484 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 484 Bytes

Zap log hook for Bun ORM

Install

go get github.com/alc6/zapbun

Usage

hook := NewQueryHook(logger,
    WithEnabled(false), // with hook log enabled true/false 
    WithVerbose(false), // verbose mode true/false
    WithLevels(queryLevel, errorLevel), // using levels from zapcore.Level
    WithDuration(false), // log the duration true/false
    WithDurationPrecision(time.Millisecond), // usually time.Millisecond/time.Microsecond
)