Merge pull request #334 from Yamato-Security/fix/rules_count#333

fixed contents and rule-count #333
This commit is contained in:
Yamato Security
2021-12-22 15:34:13 +09:00
committed by GitHub

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!("");
}
}