diff options
| author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-10-06 23:35:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-06 23:35:12 +0000 |
| commit | dcdd887df3549d41c3fdaf4ad8a20218179039d5 (patch) | |
| tree | ece0f2275d10663f4b49fe737c6401536d0758c8 /src/core/hle/service/bcat/backend/boxcat.cpp | |
| parent | 3cb4c9f08afc57e40fc103e2d087cde7c48bf153 (diff) | |
| parent | 0705ce0ed16da57b9ab282980b23c18e815e1f85 (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.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; } } |
