Disable in process stack dumping on Windows.

It would force the process to run in console.
This commit is contained in:
Cheng Zhao 2014-02-25 18:47:11 +08:00
parent a5ec8a9110
commit 2117d06274

View file

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