Skip to content

Commit

Permalink
log statement corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
nityanandagohain committed Jul 27, 2022
1 parent 047227a commit d15f9a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/query-service/app/http_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -1955,8 +1955,8 @@ func (aH *APIHandler) tailLogs(w http.ResponseWriter, r *http.Request) {
case <-client.Done:
zap.S().Debug("done!")
return
case <-client.Error:
zap.S().Debug("error occured!")
case err := <-client.Error:
zap.S().Error("error occured!", err)
return
}
}
Expand Down

0 comments on commit d15f9a1

Please sign in to comment.