mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
Make sharedQueue overflow warning quieter (#2008)
This commit is contained in:
parent
da1b98b690
commit
51abcd6147
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue