Added debug logging for version regex extraction.

Useful for determining which regex strings need improvement.
This commit is contained in:
Oliver Hamlet
2015-01-06 10:54:58 +00:00
parent c0402846bd
commit 76b494ab71
+1
View File
@@ -427,6 +427,7 @@ namespace loot {
//Use the first sub-expression match.
version = string(what[1].first, what[1].second);
boost::trim(version);
BOOST_LOG_TRIVIAL(info) << name << ": " << "Extracted version \"" << version << "\" using regex " << i + 1;
break;
}
}