summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rulebase.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/rulebase.cpp b/src/rulebase.cpp
index d6e428a..9010598 100644
--- a/src/rulebase.cpp
+++ b/src/rulebase.cpp
@@ -35,9 +35,10 @@ RuleBase::RuleBase() :
void RuleBase::print(const std::string &text) const
{
- printf("[%s:%d]: %s\n", file.c_str(), line, text.c_str());
-// printf("%s [%s:%d]: %s\n", ruleName.c_str(),
-// file.c_str(), line, text.c_str());
+ printf("[%s:%d]: V%s: %s\n", file.c_str(), line,
+ ruleName.c_str(), text.c_str());
+// printf("%s [%s:%d]: V%s: %s\n", ruleName.c_str(),
+// file.c_str(), line, ruleName.c_str(), text.c_str());
}
void RuleBase::printRaw(const std::string &text) const