diff options
author | Chris Robinson <[email protected]> | 2019-06-04 01:37:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-04 01:37:36 -0700 |
commit | 4522a51ea21813de9a59dd059c50f85d8a5116f1 (patch) | |
tree | dc41f36517a4ec6236c56b375eb37eadee8bf2e6 /Alc/backends/jack.cpp | |
parent | f0bc9d8a9b45a86cf0736a3f118b28ae6fdb90f0 (diff) |
Don't log the function or prefix
It's ultimately unnecessary since the message is an indicator about where it
was logged from. The message itself is generally more important than where it
was from, too.
Diffstat (limited to 'Alc/backends/jack.cpp')
-rw-r--r-- | Alc/backends/jack.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Alc/backends/jack.cpp b/Alc/backends/jack.cpp index 74364f6a..c58f73bc 100644 --- a/Alc/backends/jack.cpp +++ b/Alc/backends/jack.cpp @@ -176,7 +176,6 @@ struct JackPlayback final : public BackendBase { std::atomic<bool> mKillNow{true}; std::thread mThread; - static constexpr inline const char *CurrentPrefix() noexcept { return "JackPlayback::"; } DEF_NEWDEL(JackPlayback) }; |