diff options
| author | David Lönnhager <david.l@mullvad.net> | 2020-05-04 12:55:44 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2020-05-05 10:00:25 +0200 |
| commit | 9f3fe9576385ff2f2750b92fe211e8da292e5584 (patch) | |
| tree | 9d1f62fab03a5b70a9f1a1d8e77745c85515206d | |
| parent | 635e67bbb68fff7fd2ac1294b294892379488893 (diff) | |
| download | mullvadvpn-9f3fe9576385ff2f2750b92fe211e8da292e5584.tar.xz mullvadvpn-9f3fe9576385ff2f2750b92fe211e8da292e5584.zip | |
Overwrite install.log instead of appending to it
| -rw-r--r-- | windows/nsis-plugins/src/log/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/nsis-plugins/src/log/log.cpp b/windows/nsis-plugins/src/log/log.cpp index 1fc5c2a05f..6c1fb9111a 100644 --- a/windows/nsis-plugins/src/log/log.cpp +++ b/windows/nsis-plugins/src/log/log.cpp @@ -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; |
