Skip to content

Commit

Permalink
Make sharedQueue overflow warning quieter (denoland#2008)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry authored and piscisaureus committed Mar 28, 2019
1 parent da1b98b commit 51abcd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/shared_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl SharedQueue {
let end = off + record.len();
let index = self.num_records();
if end > self.bytes.len() {
eprintln!("WARNING the sharedQueue overflowed");
debug!("WARNING the sharedQueue overflowed");
return false;
}
self.set_end(index, end);
Expand Down

0 comments on commit 51abcd6

Please sign in to comment.