mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-14 02:58:10 +00:00
Lower log level on region overlap (#2559)
This commit is contained in:
@ -66,7 +66,7 @@ where
|
|||||||
/// entry. Returns `true` if inserted, `false` otherwise.
|
/// entry. Returns `true` if inserted, `false` otherwise.
|
||||||
pub fn insert(&mut self, region: R) -> bool {
|
pub fn insert(&mut self, region: R) -> bool {
|
||||||
if let Some(existing) = self.find(region.base()) {
|
if let Some(existing) = self.find(region.base()) {
|
||||||
log::error!(
|
log::debug!(
|
||||||
"existing region contains start of new region: {:x?}",
|
"existing region contains start of new region: {:x?}",
|
||||||
existing
|
existing
|
||||||
);
|
);
|
||||||
@ -74,7 +74,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
if let Some(existing) = self.find(region.last()) {
|
if let Some(existing) = self.find(region.last()) {
|
||||||
log::error!(
|
log::debug!(
|
||||||
"existing region contains end of new region: {:x?}",
|
"existing region contains end of new region: {:x?}",
|
||||||
existing
|
existing
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user