diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-26 14:46:54 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-26 15:37:16 -0400 |
commit | c33755e2b993c30b68920a578af9c9d0f5fbdc2f (patch) | |
tree | ff0d274c8b1305610162f691f9d32088045b8f58 /src/core/tracer | |
parent | 3dd3cdeafd70efd265aaf482e1c32a6d03740fb8 (diff) |
core: Replace remaining old non-generic logger usages with fmt-capable equivalents
LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from
interface changes, as it will require removing a parameter from the relevant function
in the VMManager class.
Diffstat (limited to 'src/core/tracer')
-rw-r--r-- | src/core/tracer/recorder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/tracer/recorder.cpp b/src/core/tracer/recorder.cpp index f3b0d6a8f..2f848c994 100644 --- a/src/core/tracer/recorder.cpp +++ b/src/core/tracer/recorder.cpp @@ -159,7 +159,7 @@ void Recorder::Finish(const std::string& filename) { throw "Failed to write stream element"; } } catch (const char* str) { - LOG_ERROR(HW_GPU, "Writing CiTrace file failed: %s", str); + NGLOG_ERROR(HW_GPU, "Writing CiTrace file failed: {}", str); } } |