Commit 6f3c97ab authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #51459 from sakeven/fix/log

Automatic merge from submit-queue (batch tested with PRs 51425, 51404, 51459, 51504, 51488) Use glog instaed of fmt.Printf Signed-off-by: 's avatarsakeven <jc5930@sina.cn> **What this PR does / why we need it**: The log `fmt.Printf` produces is inconsistent with `glog`. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: ``` NONE ```
parents 611036c8 fac27d1e
...@@ -253,7 +253,7 @@ func (o *Options) writeConfigFile() error { ...@@ -253,7 +253,7 @@ func (o *Options) writeConfigFile() error {
return err return err
} }
fmt.Printf("Wrote configuration to: %s\n", o.WriteConfigTo) glog.Infof("Wrote configuration to: %s\n", o.WriteConfigTo)
return nil return nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment