diff options
| -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; |
