mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
Fresh dep ensure
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