diff options
author | Dave Parks <davep@lindenlab.com> | 2024-09-12 11:06:05 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2024-09-12 11:06:05 -0500 |
commit | 61990bfd6992ca1c4ee2df2795a469f67b085968 (patch) | |
tree | 8b363b23baff7217078a7539068eaa228eda81e6 | |
parent | 14a3c7573652e669c35dd331214f572da985c2a9 (diff) |
Fix for tracy not working on mac
-rw-r--r-- | indra/llcommon/llerror.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index ad35bc84f2..90c6ba309b 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -110,7 +110,7 @@ namespace { virtual void recordMessage(LLError::ELevel level, const std::string& message) override { - LL_PROFILE_ZONE_SCOPED_CATEGORY_LOGGING + LL_PROFILE_ZONE_SCOPED_CATEGORY_LOGGING; int syslogPriority = LOG_CRIT; switch (level) { case LLError::LEVEL_DEBUG: syslogPriority = LOG_DEBUG; break; |