diff options
| author | 2022-10-05 18:53:42 -0700 | |
|---|---|---|
| committer | 2022-10-05 18:53:42 -0700 | |
| commit | d55096ce85d3f24f57f84e26c6256c42956b858a (patch) | |
| tree | 8ea9756f0249505b9928b312ae64fad926433bc0 /src/common/logging/backend.cpp | |
| parent | Merge pull request #9015 from german77/amiibo-rewrite (diff) | |
| parent | common: remove "yuzu:" prefix from thread names (diff) | |
| download | yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.gz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.xz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.zip | |
Merge pull request #9013 from liamwhite/spinning-a-yarn
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/common/logging/backend.cpp')
| -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: | |||
| 219 | 219 | ||
| 220 | void StartBackendThread() { | 220 | void StartBackendThread() { |
| 221 | backend_thread = std::jthread([this](std::stop_token stop_token) { | 221 | backend_thread = std::jthread([this](std::stop_token stop_token) { |
| 222 | Common::SetCurrentThreadName("yuzu:Log"); | 222 | Common::SetCurrentThreadName("Logger"); |
| 223 | Entry entry; | 223 | Entry entry; |
| 224 | const auto write_logs = [this, &entry]() { | 224 | const auto write_logs = [this, &entry]() { |
| 225 | ForEachBackend([&entry](Backend& backend) { backend.Write(entry); }); | 225 | ForEachBackend([&entry](Backend& backend) { backend.Write(entry); }); |