# cool-logger

> A cool yet simple logger for Node.js

Latest version **0.0.1** (published 2016-08-06) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install cool-logger
pnpm add cool-logger
yarn add cool-logger
bun add cool-logger
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2016-08-06 |
| First published | 2016-08-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Łaniewski Bartosz |
| Maintainers | bartozzz |
| Keywords | log, logger, debug |

## Links

- npm: https://www.npmjs.com/package/cool-logger
- Repository: https://github.com/Bartozzz/cool-logger
- Homepage: https://github.com/Bartozzz/cool-logger#readme
- Issues: https://github.com/Bartozzz/cool-logger/issues
- npm.io page: https://npm.io/package/cool-logger

## Dependencies (1)

- [colors](https://npm.io/package/colors.md) latest

## Alternatives

- [cli-color](https://npm.io/package/cli-color.md) — 3.4M weekly downloads
- [log](https://npm.io/package/log.md) — 1.3M weekly downloads
- [logstash-client](https://npm.io/package/logstash-client.md) — 4.5K weekly downloads
- [@nocobase/plugin-logger](https://npm.io/package/@nocobase/plugin-logger.md) — 2.0K weekly downloads
- [child-process-debug](https://npm.io/package/child-process-debug.md) — 695 weekly downloads

## Recent versions

- 0.0.1 (latest) — 2016-08-06

## README

# cool-logger

A cool yet simple logger for Node.js.

![Screenshot](https://cdn.rawgit.com/Bartozzz/cool-logger/master/screenshot.png)

## Installation

```bash
$ npm install cool-logger
```

## Usage

```javascript
import { format, critical, error, warning, notice, info, debug, log } from "call-dir";

// ... and let the magic happen:
critical( "This is a critical message" );
error( "This is a error message" );
warning( "This is a warning message" );
notice( "This is a notice message" );
info( "This is a info message" );
debug( "This is a debug message" );
log( "This is a custom APP message", "APP" );
log( "This is a custom DAB message", "DAB" );

// ... also provides a morgan format for Express.js:
app.use( morgan( format ) );
```

---
_Source: https://npm.io/package/cool-logger · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
