citra-emu
/
citra
Archived
1
0
Fork 0

CiTrace: Migrate logging macros

This commit is contained in:
Valentin Vanelslande 2018-03-28 20:48:59 -06:00 committed by GitHub
parent 74465389f3
commit 528d8a6ccb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ void Recorder::Finish(const std::string& filename) {
throw "Failed to write stream element"; throw "Failed to write stream element";
} }
} catch (const char* str) { } catch (const char* str) {
LOG_ERROR(HW_GPU, "Writing CiTrace file failed: %s", str); NGLOG_ERROR(HW_GPU, "Writing CiTrace file failed: {}", str);
} }
} }