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 @@ -1217,6 +1217,19 @@ func CopyStandardLogTo(name string) {
1217
1217
stdLog .SetOutput (logBridge (sev ))
1218
1218
}
1219
1219
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
+
1220
1233
// logBridge provides the Write method that enables CopyStandardLogTo to connect
1221
1234
// Go's standard logs to the logs provided by this package.
1222
1235
type logBridge severity.Severity
You can’t perform that action at this time.
0 commit comments