Zap log hook for Bun ORM
go get github.com/alc6/zapbun
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
)