Lower log level on region overlap (#2559)

This commit is contained in:
Joe Ranweiler
2022-10-24 16:15:02 -07:00
committed by GitHub
parent cafba18c85
commit db1a712ed3

View File

@ -66,7 +66,7 @@ where
/// entry. Returns `true` if inserted, `false` otherwise.
pub fn insert(&mut self, region: R) -> bool {
if let Some(existing) = self.find(region.base()) {
log::error!(
log::debug!(
"existing region contains start of new region: {:x?}",
existing
);
@ -74,7 +74,7 @@ where
}
if let Some(existing) = self.find(region.last()) {
log::error!(
log::debug!(
"existing region contains end of new region: {:x?}",
existing
);