File size: 505 Bytes
311cc15
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div align="center">
    <h2 align="center">meklog</h2>
    <h3 align="center">Node.js logging library</h3>
    <p>Inspired by <a href="https://github.com/CallMeEchoCodes/simpllog">Simpllog</a></p>
    <img alt="Stars" src="https://img.shields.io/github/stars/mekb-turtle/log?display_name=tag&style=for-the-badge" />
</div>

### Usage
`npm i meklog`
```js
const { Logger, LogLevel } = require("meklog")
const log = new Logger(production: boolean, prefix: string);
log(LogLevel.Info, "Hello, World!");
```