Skip to content

Commit 4de3d37

Browse files
committed
expose logBridge via NewStandardLog()
Various libraries, including stdlib, accept *log.Logger to support optional logging. Let's expose logBridge to facilitate working with these libraries. stdlib examples: * [http.Server.ErrorLog] * [httputil.ReverseProxy.ErrorLog] [http.Server.ErrorLog]: https://cs.opensource.google/go/go/+/refs/tags/go1.20.1:src/net/http/server.go;l=2679-2683;drc=ea4631cc0cf301c824bd665a7980c13289ab5c9d [httputil.ReverseProxy.ErrorLog]: https://cs.opensource.google/go/go/+/refs/tags/go1.20.1:src/net/http/httputil/reverseproxy.go;l=173-176;drc=458241f981e0a8e1d9e0b2f6ae53be62f00001d2
1 parent e37f9fe commit 4de3d37

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

klog.go

+13
Original file line numberDiff line numberDiff line change
@@ -1217,6 +1217,19 @@ func CopyStandardLogTo(name string) {
12171217
stdLog.SetOutput(logBridge(sev))
12181218
}
12191219

1220+
// NewStandardLogger returns a Logger that writes to the klog logs for the
1221+
// named and lower severities.
1222+
//
1223+
// Valid names are "INFO", "WARNING", "ERROR", and "FATAL". If the name is not
1224+
// recognized, NewStandardLogger panics.
1225+
func NewStandardLogger(name string) *stdLog.Logger {
1226+
sev, ok := severity.ByName(name)
1227+
if !ok {
1228+
panic(fmt.Sprintf("klog.NewStandardLogger(%q): unknown severity", name))
1229+
}
1230+
return stdLog.New(logBridge(sev), "", stdLog.Lshortfile)
1231+
}
1232+
12201233
// logBridge provides the Write method that enables CopyStandardLogTo to connect
12211234
// Go's standard logs to the logs provided by this package.
12221235
type logBridge severity.Severity

0 commit comments

Comments
 (0)