Disable stack dumping on MAC.

It would prevent the system crash reporter.
This commit is contained in:
Cheng Zhao 2014-02-24 11:48:11 +08:00
parent f2bef6c26d
commit 99c0de6a1a

View file

@ -42,7 +42,7 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {
logging::SetLogItems(true, false, true, false);
// Enable convient stack printing.
#if defined(DEBUG)
#if defined(DEBUG) && !defined(OS_MACOSX)
base::debug::EnableInProcessStackDumping();
#endif