vivocha/log4js-node

Name: log4js-node

Owner: Vivocha

Description: A port of log4js to node.js

Created: 2013-12-10 13:24:02.0

Updated: 2014-08-29 14:51:16.0

Pushed: 2014-09-08 10:18:49.0

Homepage:

Size: 933

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

log4js-node Build Status

This is a conversion of the log4js framework to work with node. I've mainly stripped out the browser-specific code and tidied up some of the javascript.

Out of the box it supports the following features:

NOTE: from log4js 0.5 onwards you'll need to explicitly enable replacement of node's console.log functions. Do this either by calling log4js.replaceConsole() or configuring with an object or json file like this:


penders: [
{ type: "console" }

placeConsole: true

installation

npm install log4js

usage

Minimalist version:

log4js = require('log4js');
logger = log4js.getLogger();
er.debug("Some debug messages");

By default, log4js outputs to stdout with the coloured layout (thanks to masylum), so for the above you would see:

0-01-17 11:43:37.987] [DEBUG] [default] - Some debug messages

See example.js for a full example, but here's a snippet (also in fromreadme.js):

log4js = require('log4js'); 
nsole log is loaded by default, so you won't normally need to do this
g4js.loadAppender('console');
js.loadAppender('file');
g4js.addAppender(log4js.appenders.console());
js.addAppender(log4js.appenders.file('logs/cheese.log'), 'cheese');

logger = log4js.getLogger('cheese');
er.setLevel('ERROR');

er.trace('Entering cheese testing');
er.debug('Got cheese.');
er.info('Cheese is Gouda.');
er.warn('Cheese is quite smelly.');
er.error('Cheese is too ripe!');
er.fatal('Cheese was breeding ground for listeria.');

Output:

0-01-17 11:43:37.987] [ERROR] cheese - Cheese is too ripe!
0-01-17 11:43:37.990] [FATAL] cheese - Cheese was breeding ground for listeria.

The first 5 lines of the code above could also be written as:

log4js = require('log4js');
js.configure({
penders: [
{ type: 'console' },
{ type: 'file', filename: 'logs/cheese.log', category: 'cheese' }


configuration

You can configure the appenders and log levels manually (as above), or provide a configuration file (log4js.configure('path/to/file.json')), or a configuration object. The configuration file location may also be specified via the environment variable LOG4JS_CONFIG (export LOG4JS_CONFIG=path/to/file.json). An example file can be found in test/log4js.json. An example config file with log rolling is in test/with-log-rolling.json. By default, the configuration file is checked for changes every 60 seconds, and if changed, reloaded. This allows changes to logging levels to occur without restarting the application.

To turn off configuration file change checking, configure with:

log4js = require('log4js');
js.configure('my_log4js_configuration.json', {});

To specify a different period:

js.configure('file.json', { reloadSecs: 300 });

For FileAppender you can also pass the path to the log directory as an option where all your log files would be stored.

js.configure('my_log4js_configuration.json', { cwd: '/absolute/path/to/log/dir' });

If you have already defined an absolute path for one of the FileAppenders in the configuration file, you could add a “absolute”: true to the particular FileAppender to override the cwd option passed. Here is an example configuration file:

 my_log4js_configuration.json ####

ppenders": [
{
  "type": "file",
  "filename": "relative/path/to/log_file.log",
  "maxLogSize": 20480,
  "backups": 3,
  "category": "relative-logger"
},
{
  "type": "file",
  "absolute": true,
  "filename": "/absolute/path/to/log_file.log",
  "maxLogSize": 20480,
  "backups": 10,
  "category": "absolute-logger"          
}


Documentation for most of the core appenders can be found on the wiki, otherwise take a look at the tests and the examples.

Documentation

See the wiki. Improve the wiki, please.

There's also an example application.

Contributing

Contributions welcome, but take a look at the rules first.

License

The original log4js was distributed under the Apache 2.0 License, and so is this. I've tried to keep the original copyright and author credits in place, except in sections that I have rewritten extensively.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.