Fix comments

This commit is contained in:
Alex Dadgar 2015-09-25 16:46:21 -07:00
parent 3cf6d014ef
commit 5a76693bc6
1 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ func (c *Client) init() error {
return fmt.Errorf("failed creating state dir: %s", err)
}
c.logger.Printf("[INFO] using state directory %v", c.config.StateDir)
c.logger.Printf("[INFO] client: using state directory %v", c.config.StateDir)
}
// Ensure the alloc dir exists if we have one
@ -165,7 +165,7 @@ func (c *Client) init() error {
}
c.config.AllocDir = p
c.logger.Printf("[INFO] using alloc directory %v", c.config.AllocDir)
c.logger.Printf("[INFO] client: using alloc directory %v", c.config.AllocDir)
return nil
}