diff options
author | Lioncash <mathew1800@gmail.com> | 2019-10-06 19:58:51 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-10-06 20:00:32 +0200 |
commit | 329081fcb7e1d663ab898d805ba24fb42b53db4c (patch) | |
tree | 58dc72be99547a681fbc2f17c10ae474d45719ef /src | |
parent | Merge pull request #2942 from ReinUsesLisp/clang-warnings (diff) | |
download | yuzu-329081fcb7e1d663ab898d805ba24fb42b53db4c.tar yuzu-329081fcb7e1d663ab898d805ba24fb42b53db4c.tar.gz yuzu-329081fcb7e1d663ab898d805ba24fb42b53db4c.tar.bz2 yuzu-329081fcb7e1d663ab898d805ba24fb42b53db4c.tar.lz yuzu-329081fcb7e1d663ab898d805ba24fb42b53db4c.tar.xz yuzu-329081fcb7e1d663ab898d805ba24fb42b53db4c.tar.zst yuzu-329081fcb7e1d663ab898d805ba24fb42b53db4c.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 3 |
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; } } |