fixed contents and rule-count #333

This commit is contained in:
DustInDark
2021-12-22 15:25:00 +09:00
parent bfe9223817
commit a14702dc76

View File

@@ -258,7 +258,10 @@ impl Detection {
});
println!("Ignored rules: {}", ignore_count);
println!("Rule parsing errors: {}", parseerror_count);
println!("Total detection rules: {}", total);
println!(
"Total enabled detection rules: {}",
total - ignore_count - parseerror_count
);
println!("");
}
}