# imagemin-log

> The log utility used in imagemin related projects

Latest version **2.0.0** (published 2014-11-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install imagemin-log
pnpm add imagemin-log
yarn add imagemin-log
bun add imagemin-log
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2014-11-24 |
| First published | 2014-10-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 18 |
| Author | Kevin Mårtensson |
| Maintainers | kevva |
| Keywords | imagemin, log |

## Links

- npm: https://www.npmjs.com/package/imagemin-log
- Repository: https://github.com/imagemin/imagemin-log
- Issues: https://github.com/imagemin/imagemin-log/issues
- npm.io page: https://npm.io/package/imagemin-log

## Dependencies (2)

- [squeak](https://npm.io/package/squeak.md) ^1.0.0
- [figures](https://npm.io/package/figures.md) ^1.3.5

## 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
- [@luma.gl/experimental](https://npm.io/package/@luma.gl/experimental.md) — 77.1K 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

## Recent versions

- 2.0.0 (latest) — 2014-11-24
- 1.0.2 — 2014-10-24
- 1.0.1 — 2014-10-21
- 1.0.0 — 2014-10-19

## README

# imagemin-log [![Build Status](http://img.shields.io/travis/imagemin/imagemin-log.svg?style=flat)](https://travis-ci.org/imagemin/imagemin-log)

> The log utility used in imagemin related projects

## Install

```sh
$ npm install --save imagemin-log
```

## Usage

```js
var log = require('imagemin-log');

log.info('this is a message');
log.warn('this is a warning');
log.success('this is a success message');
log.error(new Error('this is a error').stack);

/*
  ℹ this is a message
  ⚠ this is a warning
  ✔ this is a success message
  ✖ Error: this is an error
    at ChildProcess.exithandler (child_process.js:648:15)
    at ChildProcess.emit (events.js:98:17)
 */
```

## License

MIT © [imagemin](https://github.com/imagemin)

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