Remove unnecessary byte spam in trace logs
This commit is contained in:
parent
0ddfd65b8b
commit
f6712be804
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ func (c *Client) readLongPoll(log *zerolog.Logger, rc io.ReadCloser) {
|
||||||
}
|
}
|
||||||
accumulatedData = append(accumulatedData, chunk...)
|
accumulatedData = append(accumulatedData, chunk...)
|
||||||
if !json.Valid(accumulatedData) {
|
if !json.Valid(accumulatedData) {
|
||||||
log.Trace().Bytes("data", chunk).Msg("Invalid JSON, reading next chunk")
|
log.Trace().Msg("Invalid JSON, reading next chunk")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
currentBlock := accumulatedData
|
currentBlock := accumulatedData
|
||||||
|
|
Loading…
Reference in a new issue