Disable in process stack dumping on Windows.
It would force the process to run in console.
This commit is contained in:
parent
a5ec8a9110
commit
2117d06274
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {
|
|||
logging::SetLogItems(true, false, true, false);
|
||||
|
||||
// Enable convient stack printing.
|
||||
#if defined(DEBUG) && !defined(OS_MACOSX)
|
||||
#if defined(DEBUG) && defined(OS_LINUX)
|
||||
base::debug::EnableInProcessStackDumping();
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue