summaryrefslogtreecommitdiffhomepage
path: root/windows/nsis-plugins/src
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2020-05-04 12:55:44 +0200
committerDavid Lönnhager <david.l@mullvad.net>2020-05-05 10:00:25 +0200
commit9f3fe9576385ff2f2750b92fe211e8da292e5584 (patch)
tree9d1f62fab03a5b70a9f1a1d8e77745c85515206d /windows/nsis-plugins/src
parent635e67bbb68fff7fd2ac1294b294892379488893 (diff)
downloadmullvadvpn-9f3fe9576385ff2f2750b92fe211e8da292e5584.tar.xz
mullvadvpn-9f3fe9576385ff2f2750b92fe211e8da292e5584.zip
Overwrite install.log instead of appending to it
Diffstat (limited to 'windows/nsis-plugins/src')
-rw-r--r--windows/nsis-plugins/src/log/log.cpp2
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;