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:
Ash Wilson 2014-12-11 15:30:33 -05:00 committed by Guillaume Giamarchi
parent 5f0fe8e704
commit 2fb9061142
2 changed files with 2 additions and 2 deletions

View File

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

View File

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