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

set log file maxsize from 16KB to 1MB

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2022-10-24 08:58:24 +03:00
parent 4f7776789b
commit 9af1186796

View File

@ -62,7 +62,7 @@ if (ipcMain) {
* called in the main process * called in the main process
*/ */
dirname: app.getPath("logs"), dirname: app.getPath("logs"),
maxsize: 16 * 1024, maxsize: 1024 * 1024,
maxFiles: 16, maxFiles: 16,
tailable: true, tailable: true,
}), }),