Skip to content

Commit

Permalink
fix: Debug builds on Windows. (#20117)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenEBarbaro authored and MarshallOfSound committed Sep 5, 2019
1 parent 196fcea commit 93da8e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/app/atom_main_delegate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {
base::FilePath log_filename;
base::PathService::Get(base::DIR_EXE, &log_filename);
log_filename = log_filename.AppendASCII("debug.log");
settings.log_file = log_filename.value().c_str();
settings.log_file_path = log_filename.value().c_str();
settings.lock_log = logging::LOCK_LOG_FILE;
settings.delete_old = logging::DELETE_OLD_LOG_FILE;
#else
Expand Down

0 comments on commit 93da8e2

Please sign in to comment.