summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-03-12 04:31:05 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-04-15 07:53:16 +0200
commit0a40106cf143c5ae5e029ce3f828bead6d3fdb92 (patch)
tree81584dc488e21f424bd9da2db095e88038b8d926
parentapplets: Pass in the LibraryAppletMode each applet's constructor (diff)
downloadyuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar.gz
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar.bz2
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar.lz
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar.xz
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar.zst
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.zip
-rw-r--r--src/core/hle/service/am/am.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 836fa564e..6373d816d 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -971,7 +971,7 @@ private:
auto storage = applet->GetBroker().PopNormalDataToGame();
if (storage == nullptr) {
- LOG_ERROR(Service_AM,
+ LOG_DEBUG(Service_AM,
"storage is a nullptr. There is no data in the current normal channel");
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ERR_NO_DATA_IN_CHANNEL);
@@ -1002,7 +1002,7 @@ private:
auto storage = applet->GetBroker().PopInteractiveDataToGame();
if (storage == nullptr) {
- LOG_ERROR(Service_AM,
+ LOG_DEBUG(Service_AM,
"storage is a nullptr. There is no data in the current interactive channel");
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ERR_NO_DATA_IN_CHANNEL);