improve interop with other libs/stdlib

This commit is contained in:
2025-07-30 02:29:14 -04:00
parent dc2ed32352
commit 4785d5f5d5
14 changed files with 306 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
package logging
import (
`log`
"log"
)
// Setup does nothing at all; it's here for interface compat. 🙃
@@ -84,3 +84,11 @@ func (l *NullLogger) ToLogger(prio logPrio) (stdLibLog *log.Logger) {
return
}
// ToRaw returns a *logWriter. (This is a little less efficient than using ToLogger's log.Logger as an io.Writer if that's all you need.)
func (l *NullLogger) ToRaw(prio logPrio) (raw *logWriter) {
raw = &logWriter{backend: l, prio: prio}
return
}