aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/wasapi.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-06-04 01:37:36 -0700
committerChris Robinson <[email protected]>2019-06-04 01:37:36 -0700
commit4522a51ea21813de9a59dd059c50f85d8a5116f1 (patch)
treedc41f36517a4ec6236c56b375eb37eadee8bf2e6 /Alc/backends/wasapi.cpp
parentf0bc9d8a9b45a86cf0736a3f118b28ae6fdb90f0 (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/wasapi.cpp')
-rw-r--r--Alc/backends/wasapi.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Alc/backends/wasapi.cpp b/Alc/backends/wasapi.cpp
index e41116d4..c80e5943 100644
--- a/Alc/backends/wasapi.cpp
+++ b/Alc/backends/wasapi.cpp
@@ -376,8 +376,6 @@ struct WasapiProxy {
}
static int messageHandler(std::promise<HRESULT> *promise);
-
- static constexpr inline const char *CurrentPrefix() noexcept { return "WasapiProxy::"; }
};
std::deque<WasapiProxy::Msg> WasapiProxy::mMsgQueue;
std::mutex WasapiProxy::mMsgQueueLock;
@@ -533,7 +531,6 @@ struct WasapiPlayback final : public BackendBase, WasapiProxy {
std::atomic<bool> mKillNow{true};
std::thread mThread;
- static constexpr inline const char *CurrentPrefix() noexcept { return "WasapiPlayback::"; }
DEF_NEWDEL(WasapiPlayback)
};
@@ -1113,7 +1110,6 @@ struct WasapiCapture final : public BackendBase, WasapiProxy {
std::atomic<bool> mKillNow{true};
std::thread mThread;
- static constexpr inline const char *CurrentPrefix() noexcept { return "WasapiCapture::"; }
DEF_NEWDEL(WasapiCapture)
};