@hoodie/log

log API for the browser

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@hoodie/log
402.1.08 years ago8 years agoMinified + gzip package size for @hoodie/log in KB

Readme

hoodie-log
Custom log API for the browser

Build Status Coverage Status Dependency Status devDependency Status
hoodie-log is a standalone JavaScript library for logging to the browser console. If available, it takes advantage of CSS-based styling of console log outputs.

Example

var log = new Log('hoodie')

log('ohaj!')
// (hoodie) ohaj!
log.debug('This will help with debugging.')
// (hoodie:debug) This will help with debugging.
log.info('This might be of interest. Or not.')
// (hoodie:info) This might be of interest. Or not.
log.warn('Something is fishy here!')
// (hoodie:warn) Something is fishy here!
log.error('oooops')
// (hoodie:error) oooops

var fooLog = log.scoped('foo')
fooLog('baz!')
// (hoodie:foo) baz!

API

Constructor

new Log(prefix)
// or
new Log(options)

<tr>
  <th align="left">Argument</th>
  <th align="left">Type</th>
  <th align="left">Description</th>
  <th align="left">Required</th>
</tr>
<th align="left">prefix</th>
<td>String</td>
<td>Prefix for log messages</td>
<td>Yes</td>
<th align="left">options.prefix</th>
<td>String</td>
<td>Prefix for log messages</td>
<td>Yes</td>
<th align="left">options.level</th>
<td>String</td>
<td>
  <em>Defaults to <code>warn</code></em>. One of <code>debug</code>,
  <code>info</code>, <code>warn</code> or <code>error</code>.
  <code>debug</code> is the lowest level, and everything will be logged to
  the console. <code>error</code> is the highest level and nothing but
  errors will be logged.
</td>
<td>No</td>
<th align="left">styles</th>
<td>Boolean or Object</td>
<td>
  <em>Defaults to <code>true</code></em>. If set to false, all log messages
  are prefixed by <code>(<prefix>:<log type>)</code>, e.g.
  <code>(fooprefix:warn) bar is not available.</code>. If set to true,
  styles are applied to the prefix. The styles can be customised, see below
</td>
<td>No</td>
<th align="left">styles.default</th>
<td>String</td>
<td>
  <em>Defaults to <code>color: white; padding: .2em .4em; border-radius: 1em</code></em>.
  Base CSS styles for all log types
</td>
<td>No</td>
<th align="left">styles.reset</th>
<td>String</td>
<td>
  <em>Defaults to <code>background: inherit; color: inherit</code></em>.
  Reset CSS styles, applied for message after prefix
</td>
<td>No</td>
<th align="left">styles.log</th>
<td>String</td>
<td>
  <em>Defaults to <code>background: gray</code></em>.
  CSS Styles for default log calls without log level
</td>
<td>No</td>
<th align="left">styles.debug</th>
<td>String</td>
<td>
  <em>Defaults to <code>background: green</code></em>.
  CSS Styles for debug logs
</td>
<td>No</td>
<th align="left">styles.info</th>
<td>String</td>
<td>
  <em>Defaults to <code>background: blue</code></em>.
  CSS Styles for info logs
</td>
<td>No</td>
<th align="left">styles.warn</th>
<td>String</td>
<td>
  <em>Defaults to <code>background: orange</code></em>.
  CSS Styles for warn logs
</td>
<td>No</td>
<th align="left">styles.error</th>
<td>String</td>
<td>
  <em>Defaults to <code>background: red</code></em>.
  CSS Styles for error logs
</td>
<td>No</td>

Example
var log = new Log({
  prefix: 'hoodie',
  level: 'warn',
  styles: {
    default: 'color: white; padding: .2em .4em; border-radius: 1em',
    debug: 'background: green',
    log: 'background: gray',
    info: 'background: blue',
    warn: 'background: orange',
    error: 'background: red',
    reset: 'background: inherit; color: inherit'
  }
}

log.prefix

Read-only
log.prefix

Prefix used in log messages
Example
log = new Log('hoodie')
log.prefix // hoodie
log.warn("Something is fishy here!")
// (hoodie:warn) Something is fishy here!


log.level

One of debug, info, warn or error. debug is the lowest level, and everything will be logged to the console. error is the highest level and nothing but errors will be logged.
log.level

Example
log.level = 'debug'
log.debug('This will help with debugging.')
// (hoodie:debug) This will help with debugging.
log.level = 'info'
log.debug('This will help with debugging.')
// <no log>
log.level = 'foo'
// throws InvalidValue error

log()

Logs message to browser console. Accepts same arguments as console.log
log("ohaj!")

log.debug()

Logs debug message to browser console if level is set to debug. Accepts same arguments as console.log
log.debug('This will help with debugging.')

log.info()

Logs info message to browser console if level is set to debug or info Accepts same arguments as console.log
log.info('This might be of interest. Or not.')

log.warn()

Logs warning to browser console unless level is set to error Accepts same arguments as console.log
log.warn('Something is fishy here!')

log.error()

Logs error message to browser console. Accepts same arguments as console.log
log.error('oooops')

log.scoped()

log.scoped(prefix)

<tr>
  <th align="left">Argument</th>
  <th align="left">Type</th>
  <th align="left">Description</th>
  <th align="left">Required</th>
</tr>
<th align="left">prefix</th>
<td>String</td>
<td>Prefix for log messages</td>
<td>Yes</td>

Returns log API with extended prefix
Example
var log = new Log('hoodie')
log('ohaj!')
// (hoodie) ohaj!
var fooLog = log.scoped('foo')
fooLog('baz!')
// (hoodie:foo) baz!

Testing

Local setup
git clone git@github.com:hoodiehq/hoodie-log.git
cd hoodie-log
npm install

Run all tests and code style checks
npm test

Run all tests on file change
npm run test:watch

Run specific tests only
node tests/specs/debug.js # run .debug() unit tests

PROTIP™: pipe output through a pretty reporter

License

Apache-2.0