summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHexagon12 <Hexagon12@users.noreply.github.com>2019-06-20 09:03:24 +0200
committerGitHub <noreply@github.com>2019-06-20 09:03:24 +0200
commit908a5a00c5eb9c0da370184498a6240488a9bb09 (patch)
tree0cd147c4fea8bb01f66ca8dbd14a09ac25f75bab
parentMerge pull request #2591 from lioncash/record (diff)
parentUpdate content_archive.cpp (diff)
downloadyuzu-908a5a00c5eb9c0da370184498a6240488a9bb09.tar
yuzu-908a5a00c5eb9c0da370184498a6240488a9bb09.tar.gz
yuzu-908a5a00c5eb9c0da370184498a6240488a9bb09.tar.bz2
yuzu-908a5a00c5eb9c0da370184498a6240488a9bb09.tar.lz
yuzu-908a5a00c5eb9c0da370184498a6240488a9bb09.tar.xz
yuzu-908a5a00c5eb9c0da370184498a6240488a9bb09.tar.zst
yuzu-908a5a00c5eb9c0da370184498a6240488a9bb09.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/content_archive.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/content_archive.cpp b/src/core/file_sys/content_archive.cpp
index 5aa3b600b..ce5c69b41 100644
--- a/src/core/file_sys/content_archive.cpp
+++ b/src/core/file_sys/content_archive.cpp
@@ -452,13 +452,13 @@ VirtualFile NCA::Decrypt(const NCASectionHeader& s_header, VirtualFile in, u64 s
switch (s_header.raw.header.crypto_type) {
case NCASectionCryptoType::NONE:
- LOG_DEBUG(Crypto, "called with mode=NONE");
+ LOG_TRACE(Crypto, "called with mode=NONE");
return in;
case NCASectionCryptoType::CTR:
// During normal BKTR decryption, this entire function is skipped. This is for the metadata,
// which uses the same CTR as usual.
case NCASectionCryptoType::BKTR:
- LOG_DEBUG(Crypto, "called with mode=CTR, starting_offset={:016X}", starting_offset);
+ LOG_TRACE(Crypto, "called with mode=CTR, starting_offset={:016X}", starting_offset);
{
std::optional<Core::Crypto::Key128> key = {};
if (has_rights_id) {