An open API service indexing awesome lists of open source software.

https://github.com/nukeop/super-simple-log

Extremely simple console logger utility
https://github.com/nukeop/super-simple-log

Last synced: about 1 year ago
JSON representation

Extremely simple console logger utility

Awesome Lists containing this project

README

          

# super-simple-log [![Build Status](https://travis-ci.org/nukeop/super-simple-log.svg?branch=master)](https://travis-ci.org/nukeop/super-simple-log)
> Extremely simple console logger utility

## Installation

```shell
$ npm install --save super-simple-log
```

## Usage

```javascript
const log = require('super-simple-log');
log.info('Info message');
// prints "ℹ INFO - 03-06-2018 13:19:24 - Info message"

log.success('Success message');
// prints "✔ SUCCESS - 03-06-2018 13:19:24 - Success message"
```

## About
### License
Copyright © 2018, [nukeop](https://github.com/nukeop).
Released under the [Affero GPL 3.0 License](LICENSE).