diff --git a/indra/win_crash_logger/llcrashloggerwindows.cpp b/indra/win_crash_logger/llcrashloggerwindows.cpp index 4f2ac4787d..f51b190592 100644 --- a/indra/win_crash_logger/llcrashloggerwindows.cpp +++ b/indra/win_crash_logger/llcrashloggerwindows.cpp @@ -48,10 +48,8 @@ #include "llsdutil.h" #include "stringize.h" -#ifndef ND_NO_BREAKPAD #include #include -#endif #define MAX_LOADSTRING 100 #define MAX_STRING 2048 @@ -358,18 +356,14 @@ void LLCrashLoggerWindows::OnClientConnected(void* context, const google_breakpad::ClientInfo* client_info) { sInstance->mClientsConnected++; -#ifndef ND_NO_BREAKPAD LL_INFOS("CRASHREPORT") << "Client connected. pid = " << client_info->pid() << " total clients " << sInstance->mClientsConnected << LL_ENDL; -#endif } void LLCrashLoggerWindows::OnClientExited(void* context, const google_breakpad::ClientInfo* client_info) { sInstance->mClientsConnected--; -#ifndef ND_NO_BREAKPAD LL_INFOS("CRASHREPORT") << "Client disconnected. pid = " << client_info->pid() << " total clients " << sInstance->mClientsConnected << LL_ENDL; -#endif } @@ -404,7 +398,6 @@ void LLCrashLoggerWindows::OnClientDumpRequest(void* context, bool LLCrashLoggerWindows::initCrashServer() { -#ifndef ND_NO_BREAKPAD //For Breakpad on Windows we need a full Out of Process service to get good data. //This routine starts up the service on a named pipe that the viewer will then //communicate with. @@ -446,9 +439,6 @@ bool LLCrashLoggerWindows::initCrashServer() } LL_INFOS("CRASHREPORT") << "Initialized OOP server with pipe named " << stringize(wpipe_name) << LL_ENDL; -#else - LL_INFOS("CRASHREPORT") << "Crashreporting is disabled" << LL_ENDL; -#endif return true; }