electron-log
Description
Just a very simple logging module for your Electron or NW.js application. No dependencies. No complicated configuration. Just require and use. Also it can be used without Electron.
By default it writes logs to the following locations:
- on Linux:
~/.config/<app name>/log.log
- on OS X:
~/Library/Logs/<app name>/log.log
- on Windows:
%USERPROFILE%\AppData\Roaming\<app name>\log.log
Installation
Install with npm:
npm install electron-log
Usage
var log = ; log;
Transport
Transport is a simple function which requires an object which describes a message. By default, two transports are active: console and file. The file path is dependent on current platform.
Disable default transport:
logtransportsfile = false;logtransportsconsole = false;
Override transport:
logtransports { console;};
Console Transport
// Log levellogtransportsconsolelevel = 'warn'; /** * Set output format template. Available variables: * Main: {level}, * Date: {y},{m},{d},{h},{i},{s}, */logtransportsconsoleformat = '{h}:{i}:{s}:{ms} {text}'; // Set a function which formats outputlogtransportsconsole msgtext;
File transport
// Same as for console transportlogtransportsfilelevel = 'warn';logtransportsfileformat = '{h}:{i}:{s}:{ms} {text}'; // Set maximum log size in bytes. When it exceeds, old log will be saved// as log.old.log filelogtransportsfilemaxSize = 5 * 1024 * 1024; // Write to this file, must be set before first logginglogtransportsfilefile = __dirname + '/log.txt'; // fs.createWriteStream options, must be set before first logginglogtransportsfilestreamConfig = flags: 'w' ; // set existed file streamlogtransportsfilestream = fs;
By default, file transport reads a productName or name property from package.json to
determine a log path like ~/.config/<app name>/log.log
.
If you have no package.json or you want to specify another ,
just set the appName property:
logappName = 'test';
Change Log
1.3.0
- #18 Rename 'warning' log level to 'warn'
1.2.0
- #14 Use native console levels instead of console.log
1.0.16
- Prefer to use package.json:productName instead of package.json:name to determine a log path.
License
Licensed under MIT.