cargo fmt

This commit is contained in:
Cooper Quintin
2026-01-26 19:07:55 -08:00
committed by Will Greenberg
parent 6033757ddb
commit b2d5ed356f
2 changed files with 20 additions and 11 deletions

View File

@@ -381,7 +381,10 @@ impl Harness {
row.events = match InformationElement::try_from(&gsmtap_message) {
Ok(element) => self.analyze_information_element(&element),
Err(err) => {
debug!("in packet {} failed to convert gsmtap message to IE: {err:?}", self.packet_num);
debug!(
"in packet {} failed to convert gsmtap message to IE: {err:?}",
self.packet_num
);
row.skipped_message_reason =
Some(format!("failed to convert gsmtap message to IE: {err:?}"));
return row;