From 5a600cd7c05b6bb391e48fd76589167fe58b3587 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 17 Sep 2019 19:08:29 -0500 Subject: [PATCH] Fix simple log formatting [skip ci] --- common/rulesys.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/common/rulesys.cpp b/common/rulesys.cpp index ca13cfe4b..4040c043c 100644 --- a/common/rulesys.cpp +++ b/common/rulesys.cpp @@ -537,11 +537,7 @@ bool RuleManager::UpdateOrphanedRules(Database *db, bool quiet_update) return false; } - LogInfo( - "[{}] Orphaned Rule%s Deleted from 'All Rulesets' (-1)", - orphaned_rule_entries.size(), - (orphaned_rule_entries.size() == 1 ? "" : "s") - ); + LogInfo("[{}] Orphaned Rule(s) Deleted from [All Rulesets] (-1)", orphaned_rule_entries.size()); } return true;