aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/bcat/backend/boxcat.cpp
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2019-10-06 23:35:12 +0000
committerGitHub <noreply@github.com>2019-10-06 23:35:12 +0000
commitdcdd887df3549d41c3fdaf4ad8a20218179039d5 (patch)
treeece0f2275d10663f4b49fe737c6401536d0758c8 /src/core/hle/service/bcat/backend/boxcat.cpp
parent3cb4c9f08afc57e40fc103e2d087cde7c48bf153 (diff)
parent0705ce0ed16da57b9ab282980b23c18e815e1f85 (diff)
Merge pull request #2952 from lioncash/warning
bcat: Silence various warnings
Diffstat (limited to 'src/core/hle/service/bcat/backend/boxcat.cpp')
-rw-r--r--src/core/hle/service/bcat/backend/boxcat.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp
index 0e451e9c2..64022982b 100644
--- a/src/core/hle/service/bcat/backend/boxcat.cpp
+++ b/src/core/hle/service/bcat/backend/boxcat.cpp
@@ -495,7 +495,8 @@ Boxcat::StatusResult Boxcat::GetStatus(std::optional<std::string>& global,
}
return StatusResult::Success;
- } catch (const nlohmann::json::parse_error& e) {
+ } catch (const nlohmann::json::parse_error& error) {
+ LOG_ERROR(Service_BCAT, "{}", error.what());
return StatusResult::ParseError;
}
}