Fixes printf printing

This commit is contained in:
cornelk
2017-02-01 15:57:41 +07:00
parent 7e1874a5b3
commit fbc33a0a2c
6 changed files with 12 additions and 12 deletions

View File

@@ -39,12 +39,12 @@ func (b *Bitstamp) PusherClient() {
dataChannelTrade, err := pusherClient.Bind("data")
if err != nil {
log.Printf("%s Websocket Bind error: ", b.GetName(), err)
log.Printf("%s Websocket Bind error: %s\n", b.GetName(), err)
continue
}
tradeChannelTrade, err := pusherClient.Bind("trade")
if err != nil {
log.Printf("%s Websocket Bind error: ", b.GetName(), err)
log.Printf("%s Websocket Bind error: %s\n", b.GetName(), err)
continue
}