Reduce log level in ASAN parsing (#1705)

This commit is contained in:
Joe Ranweiler
2022-03-10 14:03:58 -08:00
committed by GitHub
parent 99091e7035
commit c1ffec32f4

View File

@ -56,7 +56,7 @@ pub async fn check_asan_string(mut data: String) -> Result<Option<CrashLog>> {
data.truncate(ASAN_LOG_TRUNCATE_SIZE); data.truncate(ASAN_LOG_TRUNCATE_SIZE);
data.push_str("...<truncated>"); data.push_str("...<truncated>");
} }
warn!( debug!(
"unable to parse asan log from string. error:{:?} data:{:?}", "unable to parse asan log from string. error:{:?} data:{:?}",
err, data err, data
); );