summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/content_archive.cpp
diff options
context:
space:
mode:
authorjonsn0w <42788346+jonsn0w@users.noreply.github.com>2019-06-20 04:01:41 +0200
committerGitHub <noreply@github.com>2019-06-20 04:01:41 +0200
commite78d069a8190f13bedc27fb3ad93d363d0baf7ac (patch)
treebc6a4e0f74ad7dbb01b37633609a9d3aa2eb40d8 /src/core/file_sys/content_archive.cpp
parentMerge pull request #2594 from FearlessTobi/very-important-change (diff)
downloadyuzu-e78d069a8190f13bedc27fb3ad93d363d0baf7ac.tar
yuzu-e78d069a8190f13bedc27fb3ad93d363d0baf7ac.tar.gz
yuzu-e78d069a8190f13bedc27fb3ad93d363d0baf7ac.tar.bz2
yuzu-e78d069a8190f13bedc27fb3ad93d363d0baf7ac.tar.lz
yuzu-e78d069a8190f13bedc27fb3ad93d363d0baf7ac.tar.xz
yuzu-e78d069a8190f13bedc27fb3ad93d363d0baf7ac.tar.zst
yuzu-e78d069a8190f13bedc27fb3ad93d363d0baf7ac.zip
Diffstat (limited to 'src/core/file_sys/content_archive.cpp')
-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) {