summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2021-03-11 22:31:05 -0500
committerGravatar Morph2021-04-15 01:53:16 -0400
commit0a40106cf143c5ae5e029ce3f828bead6d3fdb92 (patch)
tree81584dc488e21f424bd9da2db095e88038b8d926 /src
parentapplets: Pass in the LibraryAppletMode each applet's constructor (diff)
downloadyuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar.gz
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.tar.xz
yuzu-0a40106cf143c5ae5e029ce3f828bead6d3fdb92.zip
ILibraryAppletAccessor: Demote from ERROR to DEBUG for null storage logs
Avoids unnecessary console spam when the inline software keyboard is used.
Diffstat (limited to 'src')
-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:
971 971
972 auto storage = applet->GetBroker().PopNormalDataToGame(); 972 auto storage = applet->GetBroker().PopNormalDataToGame();
973 if (storage == nullptr) { 973 if (storage == nullptr) {
974 LOG_ERROR(Service_AM, 974 LOG_DEBUG(Service_AM,
975 "storage is a nullptr. There is no data in the current normal channel"); 975 "storage is a nullptr. There is no data in the current normal channel");
976 IPC::ResponseBuilder rb{ctx, 2}; 976 IPC::ResponseBuilder rb{ctx, 2};
977 rb.Push(ERR_NO_DATA_IN_CHANNEL); 977 rb.Push(ERR_NO_DATA_IN_CHANNEL);
@@ -1002,7 +1002,7 @@ private:
1002 1002
1003 auto storage = applet->GetBroker().PopInteractiveDataToGame(); 1003 auto storage = applet->GetBroker().PopInteractiveDataToGame();
1004 if (storage == nullptr) { 1004 if (storage == nullptr) {
1005 LOG_ERROR(Service_AM, 1005 LOG_DEBUG(Service_AM,
1006 "storage is a nullptr. There is no data in the current interactive channel"); 1006 "storage is a nullptr. There is no data in the current interactive channel");
1007 IPC::ResponseBuilder rb{ctx, 2}; 1007 IPC::ResponseBuilder rb{ctx, 2};
1008 rb.Push(ERR_NO_DATA_IN_CHANNEL); 1008 rb.Push(ERR_NO_DATA_IN_CHANNEL);