Lower "Trophy key is not specified" message from critical to info (#3636)

This commit is contained in:
Missake212
2025-09-20 20:47:46 +01:00
committed by GitHub
parent 2b1c0b4f82
commit 51c96b8ee6

View File

@@ -65,7 +65,7 @@ bool TRP::Extract(const std::filesystem::path& trophyPath, const std::string tit
const auto user_key_str = Config::getTrophyKey();
if (user_key_str.size() != 32) {
LOG_CRITICAL(Common_Filesystem, "Trophy decryption key is not specified");
LOG_INFO(Common_Filesystem, "Trophy decryption key is not specified");
return false;
}