Bumping k8s dependencies to 1.13
This commit is contained in:
14
vendor/k8s.io/klog/examples/log_file/usage_log_file.go
generated
vendored
Normal file
14
vendor/k8s.io/klog/examples/log_file/usage_log_file.go
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"k8s.io/klog"
|
||||
)
|
||||
|
||||
func main() {
|
||||
klog.InitFlags(nil)
|
||||
flag.Set("log_file", "myfile.log")
|
||||
flag.Parse()
|
||||
klog.Info("nice to meet you")
|
||||
klog.Flush()
|
||||
}
|
||||
Reference in New Issue
Block a user