Improve error message for non-matching apply rules

fixes #8323
This commit is contained in:
Gunnar Beutner 2015-01-30 15:50:03 +01:00
parent ce00081a57
commit 173f5241c4
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ void ApplyRule::CheckMatches(void)
BOOST_FOREACH(const ApplyRule& rule, kv.second) {
if (!rule.HasMatches())
Log(LogWarning, "ApplyRule")
<< "Apply rule '" + rule.GetName() + "' for type '" + kv.first + "' does not match anywhere!";
<< "Apply rule '" << rule.GetName() << "' (" << rule.GetDebugInfo() << ") for type '" << kv.first << "' does not match anywhere!";
}
}
}