Skip to content

Commit 8602249

Browse files
committed
Removed unused line (warn)
1 parent 6f6e355 commit 8602249

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stackmuncher_lib/src/file_type.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use regex::Regex;
22
use serde::Deserialize;
3-
use tracing::{debug, error, warn};
3+
use tracing::{debug, error};
44

55
#[derive(Deserialize, Clone, Debug)]
66
pub struct FileTypeMatch {
@@ -109,9 +109,9 @@ impl FileType {
109109
}
110110

111111
// otherwise return None
112-
if best_match.is_none() {
113-
warn!("No matching muncher found for {}.", file_name_with_path);
114-
}
112+
// if best_match.is_none() {
113+
// warn!("No matching muncher found for {}.", file_name_with_path);
114+
// }
115115
best_match
116116
}
117117
}

0 commit comments

Comments
 (0)