# betterconsolelog

A NPM module which makes console logging a bit nicer. This is a private package and I am a beginner in programming so do not judge me :)

**Install with**
```
npm install --save betterconsolelog
```

_example.js_

```js
const logger = require('betterconsolelog');

logger.error('Example Error');
logger.info('Example Info');
logger.debug('Example debug');
logger.warn('Example warn');
```