@youpaichris/logger 6.0.3 → 6.0.4

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/index.js +3 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13,8 +13,8 @@ let e = __filename.split("/");
13
13
  const logFilePath = e.at(e.indexOf("node_modules") - 1) === 'logger' ? `log.log` : e.at(e.indexOf("node_modules") - 1) + `.log`;
14
14
  const logFile = fs.createWriteStream(logFilePath, {flags: 'a'});
15
15
 
16
- const successsFilePath = e.at(e.indexOf("node_modules") - 1) === 'logger' ? `successs.log` : e.at(e.indexOf("node_modules") - 1) + `-successs.log`;
17
- const successsFile = fs.createWriteStream(successsFilePath, {flags: 'a'});
16
+ const successFilePath = e.at(e.indexOf("node_modules") - 1) === 'logger' ? `success.log` : e.at(e.indexOf("node_modules") - 1) + `-successs.log`;
17
+ const successFile = fs.createWriteStream(successFilePath, {flags: 'a'});
18
18
 
19
19
  const errorFilePath = e.at(e.indexOf("node_modules") - 1) === 'logger' ? `error.log` : e.at(e.indexOf("node_modules") - 1) + `-error.log`;
20
20
  const errorFile = fs.createWriteStream(errorFilePath, {flags: 'a'});
@@ -206,7 +206,7 @@ class Logger {
206
206
  if (this.save) {
207
207
  let _msg = `${dateFormat("YYYY-mm-dd HH:MM:SS.ms", new loggerConfig.Date())} | SUCCESS | ${pathLine.padEnd(22, " ")}${[...msg]}` + '\n';
208
208
  logFile.write(_msg);
209
- successsFile.write(_msg);
209
+ successFile.write(_msg);
210
210
  }
211
211
 
212
212
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@youpaichris/logger",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {