# @dzeio/logger
A Better logger for your test
## Install
For the browser via `unpkg` use it from Unpkg or download the file locally
```html
```
Via Yarn/NPM
```bash
yarn add @dzeio/logger
# or
npm i @dzeio/logger
```
## Usage
As the Logger Implements the `console` the usage don't vary on their function BUT you have more control
ex:
```js
import Logger from '@dzeio/logger' // Import the class
const logger = new Logger('prefix') // initialize it
// or
import { logger } from '@dzeio/logger' // Import already initialized one
// You can block Logging for some time
Logger.isBlocked(true) // false to unblock
```