Gathering detailed insights and metrics for electron-log
Gathering detailed insights and metrics for electron-log
Gathering detailed insights and metrics for electron-log
Gathering detailed insights and metrics for electron-log
electron-unhandled
Catch unhandled errors and promise rejections in your Electron app
@loglayer/transport-electron-log
electron-log transport for the LogLayer logging library.
log-electron
Just a simple logging module for your Electron application
electron-log-discord
An extension for electron-log that sends logs to Discord
Simple logging module Electron/Node.js/NW.js application. No dependencies. No complicated configuration.
npm install electron-log
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (93.51%)
HTML (3.63%)
TypeScript (2.43%)
Dockerfile (0.42%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1,407 Stars
559 Commits
135 Forks
11 Watchers
1 Branches
34 Contributors
Updated on Jul 11, 2025
Latest Version
5.4.1
Package Id
electron-log@5.4.1
Unpacked Size
92.02 kB
Size
25.80 kB
File Count
40
NPM Version
10.9.2
Node Version
22.15.0
Published on
Jun 11, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Simple logging module Electron/Node.js/NW.js application. No dependencies. No complicated configuration.
By default, it writes logs to the following locations:
~/.config/{app name}/logs/main.log
~/Library/Logs/{app name}/main.log
%USERPROFILE%\AppData\Roaming\{app name}\logs\main.log
Starts from v5, electron-log requires Electron 13+ or Node.js 14+. Feel free to use electron-log v4 for older runtime. v4 supports Node.js 0.10+ and almost any Electron build.
Install with npm:
npm install electron-log
1import log from 'electron-log/main'; 2 3// Optional, initialize the logger for any renderer process 4log.initialize(); 5 6log.info('Log from the main process');
If a bundler is used, you can just import the module:
1import log from 'electron-log/renderer'; 2log.info('Log from the renderer process');
This function uses sessions to inject a preload script to make the logger available in a renderer process.
Without a bundler, you can use a global variable __electronLog
. It contains
only log functions like info
, warn
and so on.
There are a few other ways how a logger can be initialized for a renderer process. Read more.
To use the logger inside a preload script, use the
electron-log/renderer
import.
There's also the electron-log/preload
entrypoint, but it's used only as a
bridge between the main and renderer processes and doesn't export a logger. In
most cases, you don't need this preload entrypoint.
1import log from 'electron-log/node'; 2log.info('Log from the nw.js or node.js');
If you would like to upgrade to the latest version, read the migration guide and the changelog.
electron-log supports the following log levels:
error, warn, info, verbose, debug, silly
Transport is a simple function which does some work with log message. By default, two transports are active: console and file.
You can set transport options or use methods using:
log.transports.console.format = '{h}:{i}:{s} {text}';
log.transports.file.getFile();
Each transport has level
and
transforms
options.
Just prints a log message to application console (main process) or to DevTools console (renderer process).
'%c{h}:{i}:{s}.{ms}%c › {text}'
(main),
'{h}:{i}:{s}.{ms} › {text}'
(renderer)Read more about console transport.
The file transport writes log messages to a file.
'[{y}-{m}-{d} {h}:{i}:{s}.{ms}] [{level}] {text}'
1log.transports.file.resolvePathFn = () => path.join(APP_DATA, 'logs/main.log');
Read more about file transport.
It displays log messages from main process in the renderer's DevTools console.
By default, it's disabled for a production build. You can enable in the
production mode by setting the level
property.
false
in the production.Sends a JSON POST request with LogMessage
in the body to the specified url.
Read more about remote transport.
Just set level property to false, for example:
1log.transports.file.level = false; 2log.transports.console.level = false;
Transport is just a function (msg: LogMessage) => void
, so you can
easily override/add your own transport.
More info.
Sometimes it's helpful to use electron-log instead of default console
. It's
pretty easy:
1console.log = log.log;
If you would like to override other functions like error
, warn
and so on:
1Object.assign(console, log.functions);
Colors can be used for both main and DevTools console.
log.info('%cRed text. %cGreen text', 'color: red', 'color: green')
Available colors:
For DevTools console you can use other CSS properties.
electron-log can catch and log unhandled errors/rejected promises:
log.errorHandler.startCatching(options?)
;
Sometimes it's helpful to save critical electron events to the log file.
log.eventLogger.startLogging(options?)
;
By default, it save the following events:
certificate-error
, child-process-gone
, render-process-gone
of app
crashed
, gpu-process-crashed
of webContents
did-fail-load
, did-fail-provisional-load
, plugin-crashed
,
preload-error
of every WebContents. You can switch any event on/off.In some situations, you may want to get more control over logging. Hook is a function which is called on each transport call.
(message: LogMessage, transport: Transport, transportName) => LogMessage
You can create multiple logger instances with different settings:
1import log from 'electron-log/main'; 2 3const anotherLogger = log.create({ logId: 'anotherInstance' });
Be aware that you need to configure each instance (e.g. log file path) separately.
1import log from 'electron-log/main'; 2const userLog = log.scope('user'); 3 4userLog.info('message with user scope'); 5// Prints 12:12:21.962 (user) › message with user scope
By default, scope labels are padded in logs. To disable it, set
log.scope.labelPadding = false
.
It's like a transaction, you may add some logs to the buffer and then decide whether to write these logs or not. It allows adding verbose logs only when some operations failed.
1import log from 'electron-log/main'; 2 3log.buffering.begin(); 4try { 5 log.info('First silly message'); 6 // do somethings complex 7 log.info('Second silly message'); 8 // do something else 9 10 // Finished fine, we don't need these logs anymore 11 log.buffering.reject(); 12} catch (e) { 13 log.buffering.commit(); 14 log.warn(e); 15}
No vulnerabilities found.
Reason
10 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 5/30 approved changesets -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More