summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2021-12-08 19:08:50 +0100
committerOskar Nyberg <oskar@mullvad.net>2021-12-08 19:10:18 +0100
commit4da98baca6a8afbd4640680e167e494279481f4a (patch)
tree2b2052288738d9277f7d8f899dc429ba6e51bdfd
parenta4da9bb1325ed71a804c11c514a50c6599bd8b32 (diff)
downloadmullvadvpn-4da98baca6a8afbd4640680e167e494279481f4a.tar.xz
mullvadvpn-4da98baca6a8afbd4640680e167e494279481f4a.zip
Change log level of file outputs to verbose
-rw-r--r--gui/src/main/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts
index c707f29cf6..ede8384e67 100644
--- a/gui/src/main/index.ts
+++ b/gui/src/main/index.ts
@@ -354,8 +354,8 @@ class ApplicationMain {
backupLogFile(mainLogPath);
backupLogFile(rendererLogPath);
- log.addOutput(new FileOutput(LogLevel.debug, mainLogPath));
- this.rendererLog.addOutput(new FileOutput(LogLevel.debug, rendererLogPath));
+ log.addOutput(new FileOutput(LogLevel.verbose, mainLogPath));
+ this.rendererLog.addOutput(new FileOutput(LogLevel.verbose, rendererLogPath));
} catch (e) {
const error = e as Error;
console.error('Failed to initialize logging:', error);