From f2f4e449b6e5ec3d239d0a26082db0506fdd2683 Mon Sep 17 00:00:00 2001 From: Will Dillon Date: Sat, 8 Nov 2025 05:28:46 -0800 Subject: Don't print the keystore --- src/bin/packet_analyzer.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/bin/packet_analyzer.rs b/src/bin/packet_analyzer.rs index 9348a08..96fcfd2 100644 --- a/src/bin/packet_analyzer.rs +++ b/src/bin/packet_analyzer.rs @@ -39,11 +39,8 @@ async fn main() -> Result<()> { // Attempt to load the identities file from disk and load all the identities let identity_string = std::fs::read_to_string(args.identities_file)?; let keystore_in: KeystoreInput = toml::from_str(&identity_string)?; - let keystore = keystore_in.compile(); - // println!("Keystore: \n{:#?}", keystore); - // Pcapng file for loading packets let pcap_file = File::open(args.pcap_file).await?; let mut pcap_reader = PcapNgReader::new(pcap_file).await?; -- cgit v1.2.3