client: standardize error logging format

This commit is contained in:
Alex Dadgar
2016-02-24 15:57:58 -08:00
parent 7f4140758e
commit 207d544a55
8 changed files with 22 additions and 22 deletions

View File

@@ -652,7 +652,7 @@ func (c *Command) retryJoin(config *Config) {
attempt++
if config.Server.RetryMaxAttempts > 0 && attempt > config.Server.RetryMaxAttempts {
logger.Printf("[ERROR] agent: max join retry exhausted, exiting")
logger.Printf("[ERR] agent: max join retry exhausted, exiting")
close(c.retryJoinErrCh)
return
}