log-likho 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -3,11 +3,12 @@ A console.log, that logs on console as well as on a file in `logs/` folder.
3
3
  Plus an advance logger with `INFO`, `WARN`, `ERROR` & `FATAL` modes.
4
4
 
5
5
  ### Simple Logger Usage
6
+
6
7
  ```sh
7
8
  npm install log-likho
8
9
  ```
9
10
 
10
- Now at the start of the code let's replace terminal only console.log with this "file + console" log function.
11
+ Replace the normal console.log with this "file + console" log function.
11
12
 
12
13
  ```js
13
14
  console.log = require('log-likho')();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "log-likho",
3
- "version": "2.0.0",
4
- "description": "AA simple file + colored stdout logger for Node.js apps.",
3
+ "version": "2.0.1",
4
+ "description": "A simple file + colored stdout logger for Node.js apps.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "node ./test/default.spec.js && node ./test/options.spec.js && node ./test/logger.spec.js",