1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Disable log file writing on renderer (#3874)

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-09-23 12:36:53 +03:00 committed by GitHub
parent 02c90c760d
commit 06854b4cac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,9 +59,6 @@ if (ipcMain) {
),
})
);
} else {
transports.push(new BrowserConsole());
}
if (!isTestEnv) {
transports.push(
@ -76,6 +73,9 @@ if (!isTestEnv) {
})
);
}
} else {
transports.push(new BrowserConsole());
}
export default winston.createLogger({
format: format.simple(),