diff options
author | Liam <byteslice@airmail.cc> | 2022-10-04 00:43:56 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-10-04 00:43:56 +0200 |
commit | 35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch) | |
tree | 12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/common | |
parent | Merge pull request #8955 from german77/amiibo-rewrite (diff) | |
download | yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.gz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.bz2 yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.lz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.xz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.zst yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 8ce1c2fd1..15d92505e 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); }); |