From 51c96b8ee6b2a8b6d5b5e48ab7dbc926023e6cab Mon Sep 17 00:00:00 2001 From: Missake212 Date: Sat, 20 Sep 2025 20:47:46 +0100 Subject: [PATCH] Lower "Trophy key is not specified" message from critical to info (#3636) --- src/core/file_format/trp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file_format/trp.cpp b/src/core/file_format/trp.cpp index a5d11b0eb..c05a46454 100644 --- a/src/core/file_format/trp.cpp +++ b/src/core/file_format/trp.cpp @@ -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; }