Fix an incorrect logging statement

This commit is contained in:
Oliver Hamlet
2017-02-06 18:02:17 +00:00
parent 26913ccb8c
commit b76b2387f6
+1 -1
View File
@@ -33,7 +33,7 @@ namespace loot {
class GetGameTypesQuery : public Query {
public:
std::string executeLogic() {
BOOST_LOG_TRIVIAL(info) << "Getting LOOT's supported languages.";
BOOST_LOG_TRIVIAL(info) << "Getting LOOT's supported game types.";
return getGameTypesAsJson();
}