Fix TIS/TSM in logs

Silences the "is calling TIS/TSM in non-main thread environment"
messages in the log when running a MacOS server as it is a red herring
that causes a lot of issues to be filed.
This commit is contained in:
Chris Simons 2020-05-04 23:21:03 -07:00
parent 675a17d6e8
commit 30c77497df
1 changed files with 7 additions and 0 deletions

View File

@ -39,6 +39,13 @@ main(int argc, char** argv)
ArchMiscWindows::setInstanceWin32(GetModuleHandle(NULL)); ArchMiscWindows::setInstanceWin32(GetModuleHandle(NULL));
#endif #endif
#ifdef __APPLE__
/* Silence "is calling TIS/TSM in non-main thread environment" as it is a red
herring that causes a lot of issues to be filed for the MacOS client/server.
*/
setenv("OS_ACTIVITY_DT_MODE", "NO", true);
#endif
Arch arch; Arch arch;
arch.init(); arch.init();