From a31ed0a4e562dd18f01e513255819898c3afc3ce Mon Sep 17 00:00:00 2001 From: onyinyang Date: Wed, 30 Aug 2023 11:35:27 -0400 Subject: [PATCH] Update output msg --- crates/lox-distributor/src/resource_parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lox-distributor/src/resource_parser.rs b/crates/lox-distributor/src/resource_parser.rs index e122c0a..2eeb5b2 100644 --- a/crates/lox-distributor/src/resource_parser.rs +++ b/crates/lox-distributor/src/resource_parser.rs @@ -50,7 +50,7 @@ pub fn parse_into_buckets( let mut bucket = [BridgeLine::default(); MAX_BRIDGES_PER_BUCKET]; let mut leftovers: Vec = Vec::new(); for bridgeline in bridgelines.clone() { - println!("What is the bridgeline: {:?}", bridgeline); + println!("Added bridge with fingerprint: {:?}", bridgeline.uid_fingerprint); if count < MAX_BRIDGES_PER_BUCKET { bucket[count] = bridgeline; count += 1;