Skip to content

Commit

Permalink
remove errant dbg messages for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Feb 14, 2024
1 parent 6adca21 commit 8783963
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand All @@ -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) => {
Expand All @@ -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) => {
Expand Down

0 comments on commit 8783963

Please sign in to comment.