UNPKG

gh-logger

Version:
40 lines (31 loc) 729 B
# gh-logger 1.0.1 This module logs errors that you give it to log. ## install To install this module use: npm i gh-logger or (if you want to save module to package.json): npm i gh-logger -save ## Usage #### Add to the project ```js const logger = require('gh-logger'); ``` Before using module, you have to connect with it: ```js logger.connect(__dirname, './logs.json'); ``` #### Add new log ```js const myLog = { type: "error", error: "Something heppend" } ``` You can lo everything what you want, not necessary array. ```js logger.addLog(myLog); ``` #### get full log list ```js let logList = logger.getFullLog(); ```