Skip to content

Commit

Permalink
Overwrite install.log instead of appending to it
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed May 4, 2020
1 parent 5129b81 commit 256f1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows/nsis-plugins/src/log/log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ void __declspec(dllexport) NSISCALL Initialize

const auto logfile = decltype(logpath)(logpath).append(L"install.log");

g_logger = new Logger(std::make_unique<Utf8FileLogSink>(logfile));
g_logger = new Logger(std::make_unique<Utf8FileLogSink>(logfile, false));

break;

Expand Down

0 comments on commit 256f1d2

Please sign in to comment.