Skip to content

Commit

Permalink
remove duplicate newline
Browse files Browse the repository at this point in the history
  • Loading branch information
djelusic committed Jul 28, 2021
1 parent ff949a7 commit 512261f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/commands/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func BackendRequest(method string, req interface{}, rsp interface{}) error {
}()
// wait for log messages
stream.Subscribe(inbox, func(nm *nats.Msg) {
log.Println(string(nm.Data))
log.Print(string(nm.Data))
})
// wait for response
httpRsp := <-rspChan
Expand Down

0 comments on commit 512261f

Please sign in to comment.