From af4f13f60affa8e36bdee731a22e6abc51fa9544 Mon Sep 17 00:00:00 2001 From: Nicky Date: Sun, 7 Jun 2015 20:52:00 +0200 Subject: [PATCH] Remove another case of ND_NO_BREAKPAD. --- indra/win_crash_logger/llcrashloggerwindows.cpp | 10 ---------- 1 file changed, 10 deletions(-) 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; }