aboutsummaryrefslogtreecommitdiff
path: root/src/client/mac/crash_generation/Inspector.h
diff options
context:
space:
mode:
authoraltse@chromium.org <altse@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-12-12 19:58:00 +0000
committeraltse@chromium.org <altse@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-12-12 19:58:00 +0000
commitb5e5d8bd3074f4decc5e942291db5c004685c48d (patch)
tree913689a0d32ae6da99a18f07ef45c36c12f18c1e /src/client/mac/crash_generation/Inspector.h
parentAdd -[BreakpadController resetConfiguration] for iOS. (diff)
downloadbreakpad-b5e5d8bd3074f4decc5e942291db5c004685c48d.tar.xz
Remove usage of gDebugLog and DEBUGLOG from Mac and iOS client code.
The inconsistent and duplicated references to gDebugLog caused problems building on iOS and the current logging implementation had little utility because it was never activated in debug builds. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1257 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/mac/crash_generation/Inspector.h')
-rw-r--r--src/client/mac/crash_generation/Inspector.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/mac/crash_generation/Inspector.h b/src/client/mac/crash_generation/Inspector.h
index 4fb62f6b..7e2eec80 100644
--- a/src/client/mac/crash_generation/Inspector.h
+++ b/src/client/mac/crash_generation/Inspector.h
@@ -38,9 +38,6 @@
#import "client/mac/crash_generation/ConfigFile.h"
#import "client/mac/handler/minidump_generator.h"
-extern bool gDebugLog;
-
-#define DEBUGLOG if (gDebugLog) fprintf
// Types of mach messsages (message IDs)
enum {
@@ -87,7 +84,6 @@ class MinidumpLocation {
// Ensure that the path exists. Fallback to /tmp if unable to locate path.
assert(minidumpDir);
if (!EnsureDirectoryPathExists(minidumpDir)) {
- DEBUGLOG(stderr, "Unable to create: %s\n", [minidumpDir UTF8String]);
minidumpDir = @"/tmp";
}