Update output msg
This commit is contained in:
parent
25add69c4d
commit
a31ed0a4e5
|
@ -50,7 +50,7 @@ pub fn parse_into_buckets(
|
||||||
let mut bucket = [BridgeLine::default(); MAX_BRIDGES_PER_BUCKET];
|
let mut bucket = [BridgeLine::default(); MAX_BRIDGES_PER_BUCKET];
|
||||||
let mut leftovers: Vec<BridgeLine> = Vec::new();
|
let mut leftovers: Vec<BridgeLine> = Vec::new();
|
||||||
for bridgeline in bridgelines.clone() {
|
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 {
|
if count < MAX_BRIDGES_PER_BUCKET {
|
||||||
bucket[count] = bridgeline;
|
bucket[count] = bridgeline;
|
||||||
count += 1;
|
count += 1;
|
||||||
|
|
Loading…
Reference in New Issue