diff options
| author | David Lönnhager <david.l@mullvad.net> | 2020-02-17 16:42:23 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2020-02-18 10:11:54 +0100 |
| commit | 2029e433b0d65f7c07f050652df259994304b2ff (patch) | |
| tree | 4b1e78a0999d68d8888eeb97c3be4823ae8d63fb /windows/nsis-plugins/src/log/log.cpp | |
| parent | a0f3494a16f411e9d7a33351a732717be31827b1 (diff) | |
| download | mullvadvpn-2029e433b0d65f7c07f050652df259994304b2ff.tar.xz mullvadvpn-2029e433b0d65f7c07f050652df259994304b2ff.zip | |
Replace AnsiFileLogSink with Utf8FileLogSink
Diffstat (limited to 'windows/nsis-plugins/src/log/log.cpp')
| -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 3a5e6579ec..1fc5c2a05f 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<AnsiFileLogSink>(logfile)); + g_logger = new Logger(std::make_unique<Utf8FileLogSink>(logfile)); break; |
