fancy-log

2.0.0last stable release 3 years ago
Complexity Score
Low
Open Issues
0
Dependent Projects
1,234
Weekly Downloadsglobal
2,789,198

License

  • MIT
    • Yesattribution
    • Permissivelinking
    • Permissivedistribution
    • Permissivemodification
    • Nopatent grant
    • Yesprivate use
    • Permissivesublicensing
    • Notrademark grant

Downloads

Readme

fancy-log

Log things, prefixed with a timestamp.

Usage

var log = require('fancy-log');

log('a message');
// [16:27:02] a message

log.error('oh no!');
// [16:27:02] oh no!

API

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.

Styling

If the terminal that you are logging to supports colors, the timestamp will be formatted as though it were a Date being formatted by util.inspect(). This means that it will be formatted as magenta by default but can be adjusted following node’s Customizing util.inspect colors documentation.

For example, this will cause the logged timestamps (and other dates) to display in red:

var util = require('util');

util.inspect.styles.date = 'red';

License

MIT

Dependencies

CVE IssuesActive
0
Scorecards Score
4.10
Test Coverage
100.00%
Follows Semver
Yes
Github Stars
122
Dependenciestotal
9
DependenciesOutdated
4
DependenciesDeprecated
0
Threat Modelling
No
Repo Audits
No

Learn how to distribute fancy-log in your own private NPM registry

npm config set registry  https://npm.cloudsmith.com/owner/repo
Processing...
Done
npm install fancy-log
Processing...
Done

8 Releases

NPM on Cloudsmith

Getting started with NPM on Cloudsmith is fast and easy.