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

custom-log

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

custom-log

A tiny flexible logger

  • 0.2.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

custom-log

A tiny (~2kb) flexible logger, very basic, simple and fast. Will add some features over time.

For browser, node, amd.

custom-log is targeted at the Browser as a tiny helper that makes available any custom log function you can create yourself, and which can be enabled/disabled individually.

Although there are plenty full-fledged loggers for use in node, you can use this one instead if you don't need a zillion features, but rather prefer simplicity.


How to use?

<function> customLog( <string>/<object> init )

Returns a log function based on the init argument. The init argument can be either a string or an object. If init is a string, only the base log function's prefix can be set with a string. In case init is an object, multiple custom log functions with their own prefix strings can be defined in the init object. To set the base log function prefix in a init object, use the reserved 'log' key. See some examples below:


// customLog is global when load in browser
// but in node:
var customLog= require( 'custom-log' );


// create a single log function with prefix:
var log= customLog( 'LOG: ' );

log( 'hey!' );
// LOG: hey!

// or create a log function with multiple custom log functions attached to it:
var log= customLog({
	// when omitting log, no prefix for the default log function will be used
	log			: 'LOG: ',
	info		: 'INFO: ',
	warning		: 'WARNING: ',
	error		: 'ERROR: ',
	listener	: 'LISTENER: ',
	dal			: 'DAL: '
	// whateverNameYouMayNeed: 'whatever prefix message.. '
});

log( 'hello' );
// LOG: hello

log.info( 'easy!' );
// INFO: easy!

log.dal( 'Success! Payload: ', 'some payload' );
// DAL: Success! Payload: some payload

// now temporarily turn off dal messages:
log.dal.disable();

// and turn them on again:
log.dal.enable();

// disable or enable multiple levels at once
// arguments can be either (space seperated)String, Array of strings, multiple Strings
log.disable( 'dal listener error log' );
// or
log.enable( 'error', 'listener', 'log' );
// or
log.enable( ['error', 'listener', 'log'] );

// use build-in assert:
log.assert( 2 > 1 );
// LOG:
//	 Assert: TRUE

// or with a description
log.assert( 2 > 1, '2 > 1' );
// or wrap in a string to automatically fill the description
log.assert( '2 > 1' );
// LOG:
//	 Assert: (2 > 1) == TRUE

// change the default assert prefix message:
customLog.assertMessage( '!! ' );
// or add 'assert' to the config object:
var log= customLog({
	assert: '!! ',
	log		: '> ',
	// ...
});


change log

0.2.1

changes license to MIT


0.1.9

Fixed bug that caused a crash on using the disable or enable function


0.1.6

Added log.assert function


0.1.0

Initial commit.


###license

MIT

Keywords

FAQs

Package last updated on 13 Sep 2016

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