From 356291f57b65730372fb138dd840504942a42e9e Mon Sep 17 00:00:00 2001 From: Ansariel Date: Fri, 5 May 2023 12:45:26 +0200 Subject: [PATCH] Restore this... --- indra/llcommon/llcallstack.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/indra/llcommon/llcallstack.h b/indra/llcommon/llcallstack.h index d5a2b7b157..de39a44db7 100644 --- a/indra/llcommon/llcallstack.h +++ b/indra/llcommon/llcallstack.h @@ -79,9 +79,15 @@ struct LLContextStatus LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLContextStatus& context_status); +// Restore this: Don't need this in actual relase builds +#ifdef LL_RELEASE_FOR_DOWNLOAD +#define dumpStack(tag) +#else #define dumpStack(tag) \ LL_DEBUGS(tag) << "STACK:\n" \ << "====================\n" \ << LLCallStack() \ << "====================" \ << LL_ENDL; +#endif +//