aboutsummaryrefslogtreecommitdiff
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-10-03 18:43:56 -0400
committerLiam <byteslice@airmail.cc>2022-10-03 18:43:56 -0400
commit35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch)
tree12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/common/logging/backend.cpp
parent61399de5dbc64ada1c9e5ec3d84be76c215fdc0c (diff)
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r--src/common/logging/backend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 8ce1c2fd18..15d92505e3 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -219,7 +219,7 @@ private:
void StartBackendThread() {
backend_thread = std::jthread([this](std::stop_token stop_token) {
- Common::SetCurrentThreadName("yuzu:Log");
+ Common::SetCurrentThreadName("Logger");
Entry entry;
const auto write_logs = [this, &entry]() {
ForEachBackend([&entry](Backend& backend) { backend.Write(entry); });