Decrease severity of logging statement

It's not an error as the registry entry doesn't have to exist.
This commit is contained in:
Oliver Hamlet
2016-12-14 18:16:08 +00:00
parent 5c7fc7b1dc
commit 59940a1e3a
+1 -1
View File
@@ -140,7 +140,7 @@ std::string RegKeyStringValue(const std::string& keyStr, const std::string& subk
BOOST_LOG_TRIVIAL(info) << "Found string: " << wstr.c_str();
return FromWinWide(wstr.c_str()); // Passing c_str() cuts off any unused buffer.
} else {
BOOST_LOG_TRIVIAL(error) << "Failed to get string value.";
BOOST_LOG_TRIVIAL(info) << "Failed to get string value.";
return "";
}
}