Skip to content

Commit

Permalink
Merge pull request #15 from aopoltorzhicky/remove-logs
Browse files Browse the repository at this point in the history
Remove logs
  • Loading branch information
aopoltorzhicky authored Oct 9, 2019
2 parents 8d61178 + e3f4eee commit 0c10cfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rest/kraken.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (api *Kraken) parseResponse(response *http.Response, retType interface{}) e
return fmt.Errorf("Error during response parsing: can not read response body (%s)", err.Error())
}

log.Println(string(body))
// log.Println(string(body))
var retData KrakenResponse
if retType != nil {
retData.Result = retType
Expand Down
2 changes: 1 addition & 1 deletion websocket/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ func (c *Client) listenUpstream() {
return
case msg := <-c.asynchronous.Listen():
if msg != nil {
log.Printf("[DEBUG]: %s\n", msg)
// log.Printf("[DEBUG]: %s\n", msg)
err := c.handleMessage(msg)
if err != nil {
log.Printf("[WARN]: %s\n", err)
Expand Down

0 comments on commit 0c10cfc

Please sign in to comment.