Skip to content

Commit 2fdc76f

Browse files
authored
Merge pull request #369 from mikedanese/stdlog
expose logBridge via NewStandardLog()
2 parents d7fc505 + 4de3d37 commit 2fdc76f

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
@@ -1228,6 +1228,19 @@ func CopyStandardLogTo(name string) {
12281228
stdLog.SetOutput(logBridge(sev))
12291229
}
12301230

1231+
// NewStandardLogger returns a Logger that writes to the klog logs for the
1232+
// named and lower severities.
1233+
//
1234+
// Valid names are "INFO", "WARNING", "ERROR", and "FATAL". If the name is not
1235+
// recognized, NewStandardLogger panics.
1236+
func NewStandardLogger(name string) *stdLog.Logger {
1237+
sev, ok := severity.ByName(name)
1238+
if !ok {
1239+
panic(fmt.Sprintf("klog.NewStandardLogger(%q): unknown severity", name))
1240+
}
1241+
return stdLog.New(logBridge(sev), "", stdLog.Lshortfile)
1242+
}
1243+
12311244
// logBridge provides the Write method that enables CopyStandardLogTo to connect
12321245
// Go's standard logs to the logs provided by this package.
12331246
type logBridge severity.Severity

0 commit comments

Comments
 (0)