sensordb2 e64a8defe5 3.17 | hai 1 ano | |
---|---|---|
.. | ||
LICENSE | hai 1 ano | |
README.md | hai 1 ano | |
index.js | hai 1 ano | |
package.json | hai 1 ano |
Log things, prefixed with a timestamp.
var log = require('fancy-log');
log('a message');
// [16:27:02] a message
log.error('oh no!');
// [16:27:02] oh no!
log(msg...)
Logs the message as if you called console.log
but prefixes the output with the
current time in HH:MM:ss format.
log.error(msg...)
Logs the message as if you called console.error
but prefixes the output with the
current time in HH:MM:ss format.
log.warn(msg...)
Logs the message as if you called console.warn
but prefixes the output with the
current time in HH:MM:ss format.
log.info(msg...)
Logs the message as if you called console.info
but prefixes the output with the
current time in HH:MM:ss format.
log.dir(msg...)
Logs the message as if you called console.dir
but prefixes the output with the
current time in HH:MM:ss format.
MIT