mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-30 09:29:58 -07:00
Update lib/src/analysis/analyzer.rs
Co-authored-by: Will Greenberg <willg@eff.org>
This commit is contained in:
committed by
Will Greenberg
parent
b43217ef35
commit
733c8b227d
@@ -381,12 +381,12 @@ 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:?}",
|
||||
let msg = format!(
|
||||
"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:?}"));
|
||||
debug!(&msg);
|
||||
row.skipped_message_reason = Some(msg);
|
||||
return row;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user