Fix inaccurate log message

This commit is contained in:
Oliver Hamlet
2017-10-31 18:52:00 +00:00
parent 4fc75979ec
commit 15390f6e19
+1 -1
View File
@@ -147,7 +147,7 @@ void LoadOrderHandler::HandleError(const std::string& operation, unsigned int re
err = "libloadorder failed to " + operation + ". Details could not be fetched.";
}
else {
err = (format("libloadorder failed to set the load order. Details: %1%") % e).str();
err = (format("libloadorder failed to " + operation + ". Details: %1%") % e).str();
}
BOOST_LOG_TRIVIAL(error) << err;