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: sakeven <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
```
This commit is contained in:
Kubernetes Submit Queue 2017-08-29 04:15:31 -07:00 committed by GitHub
commit 6f3c97ab77

View File

@ -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
} }