summaryrefslogtreecommitdiff
path: root/indra/llcommon/llerror.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2018-06-07 22:18:15 +0100
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2018-06-07 22:18:15 +0100
commit430f9420cf0094635b0b0428a29ff7dfaf5718e8 (patch)
tree193a6f22541ce4dbe8199fcde5bd5d1f006a09b1 /indra/llcommon/llerror.cpp
parent2a2046fd074ffd8df8503e4a7197fd74e006f296 (diff)
SL-915 - more on dynamic extent tracking, possible fix for 32-bit crash issues
Diffstat (limited to 'indra/llcommon/llerror.cpp')
-rw-r--r--indra/llcommon/llerror.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp
index f31a054139..916555a71d 100644
--- a/indra/llcommon/llerror.cpp
+++ b/indra/llcommon/llerror.cpp
@@ -51,6 +51,10 @@
#include "llstl.h"
#include "lltimer.h"
+//#if LL_WINDOWS
+//#pragma optimize("", off)
+//#endif
+
namespace {
#if LL_WINDOWS
void debugger_print(const std::string& s)
@@ -361,6 +365,7 @@ namespace
}
}
+ LL_INFOS("LogControlFile") << "logging reconfiguring from " << filename() << LL_ENDL;
LLError::configure(configuration);
LL_INFOS("LogControlFile") << "logging reconfigured from " << filename() << LL_ENDL;
return true;
@@ -1292,7 +1297,7 @@ namespace LLError
#if LL_WINDOWS
// VC80 was optimizing the error away.
- #pragma optimize("", off)
+// #pragma optimize("", off)
#endif
void crashAndLoop(const std::string& message)
{
@@ -1310,7 +1315,7 @@ namespace LLError
exit(EXIT_FAILURE);
}
#if LL_WINDOWS
- #pragma optimize("", on)
+// #pragma optimize("", on)
#endif
std::string utcTime()