Fix missed placeholder in log message

This commit is contained in:
Vladislav Vlastovskiy 2016-10-28 00:53:38 +03:00 committed by GitHub
parent 82009bb82d
commit 5c3701e321

View file

@ -224,7 +224,7 @@ func start(c *cli.Context) {
// initialize the stomp session and authenticate.
if err = client.Connect(opts...); err != nil {
logger.Warningf("session failed, retry in %v", backoff, err)
logger.Warningf("session failed, retry in %v. %s", backoff, err)
<-time.After(backoff)
continue
}