From 87839638060ac80136d71b3df1d8f8ffac6ba571 Mon Sep 17 00:00:00 2001 From: "C. Titus Brown" Date: Wed, 14 Feb 2024 07:30:33 -0800 Subject: [PATCH] remove errant dbg messages for now --- src/utils.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils.rs b/src/utils.rs index a25fd890..7f2b6b77 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -458,7 +458,7 @@ pub fn load_collection( }; let collection = collection.or_else(|| { - dbg!("attempting to load as manifest"); + // dbg!("attempting to load as manifest"); match collection_from_manifest(&sigpath, &report_type) { Ok(coll) => Some((coll, 0)), Err(e) => { @@ -469,7 +469,7 @@ pub fn load_collection( }); let collection = collection.or_else(|| { - dbg!("attempting to load as signature"); + // dbg!("attempting to load as signature"); match collection_from_signature(&sigpath, &report_type) { Ok(coll) => Some((coll, 0)), Err(e) => { @@ -480,7 +480,7 @@ pub fn load_collection( }); let collection = collection.or_else(|| { - dbg!("attempting to load as pathlist"); + // dbg!("attempting to load as pathlist"); match collection_from_pathlist(&sigpath, &report_type) { Ok((coll, n_failed)) => Some((coll, n_failed)), Err(e) => {