diff options
| author | Stefan Boberg <[email protected]> | 2023-10-11 09:14:29 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-10-11 09:14:29 +0200 |
| commit | 93a1adb143628dbe07ad7bac8d4d19b808228722 (patch) | |
| tree | 25db4e143b7afb9cf61344757ebe5b2ad7010f47 /src/zenserver/main.cpp | |
| parent | suppress no-op auth debug logging (diff) | |
| download | zen-93a1adb143628dbe07ad7bac8d4d19b808228722.tar.xz zen-93a1adb143628dbe07ad7bac8d4d19b808228722.zip | |
added back main thread name
this was there before but lost in a merge recently
Diffstat (limited to 'src/zenserver/main.cpp')
| -rw-r--r-- | src/zenserver/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zenserver/main.cpp b/src/zenserver/main.cpp index 18b907534..cf1ed6ee8 100644 --- a/src/zenserver/main.cpp +++ b/src/zenserver/main.cpp @@ -82,6 +82,8 @@ ZenEntryPoint::ZenEntryPoint(ZenServerOptions& ServerOptions) : m_ServerOptions( int ZenEntryPoint::Run() { + zen::SetCurrentThreadName("main"); + #if ZEN_USE_SENTRY SentryIntegration Sentry; |