mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Decrease severity of logging statement
It's not an error as the registry entry doesn't have to exist.
This commit is contained in:
@@ -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 "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user