mirror of https://github.com/docker/docs.git
Turn selected logging messages to "debug".
Otherwise, they interfere with the output of `machine url` and `machine ls`. `machine url` is more important because it breaks the export statement to configure docker if it includes additional output. Signed-off-by: Ash Wilson <ash.wilson@rackspace.com>
This commit is contained in:
parent
5f0fe8e704
commit
2fb9061142
|
@ -28,7 +28,7 @@ func (c *Client) Authenticate(d *openstack.Driver) error {
|
|||
|
||||
log.WithFields(log.Fields{
|
||||
"Username": d.Username,
|
||||
}).Info("Authenticating to Rackspace.")
|
||||
}).Debug("Authenticating to Rackspace.")
|
||||
|
||||
apiKey := c.driver.APIKey
|
||||
opts := gophercloud.AuthOptions{
|
||||
|
|
|
@ -92,7 +92,7 @@ func RegisterCreateFlags(cmd *flag.FlagSet) interface{} {
|
|||
func NewDriver(storePath string) (drivers.Driver, error) {
|
||||
log.WithFields(log.Fields{
|
||||
"storePath": storePath,
|
||||
}).Info("Instantiating Rackspace driver.")
|
||||
}).Debug("Instantiating Rackspace driver.")
|
||||
|
||||
client := &Client{}
|
||||
inner, err := openstack.NewDerivedDriver(storePath, client)
|
||||
|
|
Loading…
Reference in New Issue