diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-06-04 01:37:36 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-06-04 01:37:36 -0700 |
commit | 4522a51ea21813de9a59dd059c50f85d8a5116f1 (patch) | |
tree | dc41f36517a4ec6236c56b375eb37eadee8bf2e6 /Alc/backends/pulseaudio.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/pulseaudio.cpp')
-rw-r--r-- | Alc/backends/pulseaudio.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Alc/backends/pulseaudio.cpp b/Alc/backends/pulseaudio.cpp index f5483818..30c0053d 100644 --- a/Alc/backends/pulseaudio.cpp +++ b/Alc/backends/pulseaudio.cpp @@ -681,7 +681,6 @@ struct PulsePlayback final : public BackendBase { ALuint mFrameSize{0u}; - static constexpr inline const char *CurrentPrefix() noexcept { return "PulsePlayback::"; } DEF_NEWDEL(PulsePlayback) }; @@ -1130,7 +1129,6 @@ struct PulseCapture final : public BackendBase { pa_stream *mStream{nullptr}; pa_context *mContext{nullptr}; - static constexpr inline const char *CurrentPrefix() noexcept { return "PulseCapture::"; } DEF_NEWDEL(PulseCapture) }; |