summaryrefslogtreecommitdiffhomepage
path: root/windows/nsis-plugins/src/log/log.cpp
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2020-02-18 12:49:12 +0100
committerDavid Lönnhager <david.l@mullvad.net>2020-02-18 12:49:12 +0100
commit56924f780f39fb89222b43a438b65d4cac7ff42d (patch)
tree4b1e78a0999d68d8888eeb97c3be4823ae8d63fb /windows/nsis-plugins/src/log/log.cpp
parent06a01e394f011bd8ae689aa9c206b20010c000b6 (diff)
parent2029e433b0d65f7c07f050652df259994304b2ff (diff)
downloadmullvadvpn-56924f780f39fb89222b43a438b65d4cac7ff42d.tar.xz
mullvadvpn-56924f780f39fb89222b43a438b65d4cac7ff42d.zip
Merge branch 'update-install-log-encoding'
Diffstat (limited to 'windows/nsis-plugins/src/log/log.cpp')
-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 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;