Skip to content

a simple tool to help my electron develop work and keep user client running log

License

Notifications You must be signed in to change notification settings

18672786357/electron-logger

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

electron-logger

a simple tool to help my electron develop work and keep user client running log.

electron-logger is a simple tool, while still can satisfy my electron develop work. Any PR(format, writstream, etc..) will be appreciated.

#usage

var logger = require('electron-logger');

//output format:
//{{timestamp}} [{{filename}}:{{lineNumber}}]>> {{log_content}}
//16:46:55:111 [test.js:4]>>a info message
logger.info("a info message");


logger.setLevel("info");
logger.setLevel(1);

logger.getLevel();//"info"

logger.close();
logger.pause();
logger.open();

logger.setOutput({file:"./tmp.log"});

#practice I set the output to be {terminal:false;file:%APPDATA%} by default in production. Add a hot-key in the render process, when user encounts some bug, fire the hot-key and open the %APPDATA% directory then send the log to customer service(you can also add a backend port to send the message to the server).

About

a simple tool to help my electron develop work and keep user client running log

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CoffeeScript 98.9%
  • JavaScript 1.1%