11 |

12 |
13 |
14 |
15 |
webpack Log
16 |
A common logging module for the webpack ecosystem
17 |
18 |
19 | ## Install
20 |
21 | ```bash
22 | npm i -D webpack-log
23 | ```
24 |
25 | > ⚠️ We do not recommend installing this module globally
26 |
27 | ## Usage
28 |
29 | ```js
30 | const log = require('webpack-log');
31 | const logger = log({ name: 'wds' });
32 |
33 | logger.info('Server Starting');
34 | ```
35 |
36 | 
37 |
38 | > ℹ️ The logger returned is unique by default, due to the nature of the `webpack` ecosystem. Please reference the [`unique`](#unique) option below for disabling this feature and to **force caching**
39 |
40 | ## Options
41 |
42 | | Name | Type | Default | Description |
43 | | :---------------------------: | :---------: | :------------: | :---------------------- |
44 | | [**`name`**](#name) | `{String}` | `''