File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -1228,6 +1228,19 @@ func CopyStandardLogTo(name string) {
1228
1228
stdLog .SetOutput (logBridge (sev ))
1229
1229
}
1230
1230
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
+
1231
1244
// logBridge provides the Write method that enables CopyStandardLogTo to connect
1232
1245
// Go's standard logs to the logs provided by this package.
1233
1246
type logBridge severity.Severity
You can’t perform that action at this time.
0 commit comments