Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

coolog

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coolog

Colorful logging in NodeJS.

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Coolog

Colourful logging in node.js

This version is a rework of the original library with two new main features:

  • Mechanism to create custom appenders (file, console, online services..) using NPM. There are some built-in appenders too
  • Filter message to log (based on the log level)

Install

npm install coolog

Use

var coolog = require('../index.js');

coolog.addChannel({ 
  name: 'root',
  level: 'debug', 
  appenders: [
    'console'
  ] 
});

var logger = coolog.logger('main.js', 'root'); //root is optional

logger.log('Message or obj', ...);
logger.error('Message or obj', ...);
logger.warn('Message or obj', ...);
logger.info('Message or obj', ...);
logger.debug('Message or obj', ...);
logger.ok('Message or obj', ...);

Settings

See test/test.js file for more info.

API

coolog.addChannel({...});

Add a new channel to coolog. You can specify the name, the level of the channel (debug, warn...) and the appenders to use.

coolog.logger(filename, channel);

This method create a new logger.

  • filename is the name of the file (used in the log message)
  • Channel is optional. If you don't specify this parameter coolog assign this logger to the default channel (root).

CUSTOM APPENDERS

Developers can create custom appenders.

In coolog an appender is just a module that exports a function

module.exports = function (settings) {
  
}

settings is a variable which contains the options specified by the user in the coolog.json file.

The function should export an object with a log method.

The method should has this sign

function (level_name, channel_name, filename, args)
  • level_name is the level of the message (debug, log, info, warn, error, ok)
  • channel_name is the name of the channel
  • filename is the name of the file in which the function has been invoked
  • args is the array of the arguments passed by the user

APPENDER LIST

Logentries appender

License

Copyright (c) 2013 PlasticPanda.com, Mauro Bolis mauro@plasticpanda.com, Simone Lusenti simone@plasticpanda.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WIT

Keywords

FAQs

Package last updated on 13 Nov 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc