hermodlog 1.5.1 → 1.5.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hermodlog",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Simple contextual logger to simplify log display in heavy load context and provide easy parsing",
5
5
  "main": "src/Logger.js",
6
6
  "type": "module",
@@ -6,5 +6,5 @@ export default function dir(label, object) {
6
6
  return;
7
7
  }
8
8
  log('log', [label], this);
9
- console.dir(object, { depth: 1, colors: true });
9
+ // console.dir(object, { depth: 1, colors: true });
10
10
  }
@@ -1,7 +1,7 @@
1
1
  import LOG_LEVELS from "../LOG_LEVELS.js";
2
2
  import _log from "../utils/log.js";
3
3
  export default function log(...args) {
4
- console.log(`log: ${args}`);
4
+ // console.log(`log: ${args}`);
5
5
  if(LOG_LEVELS[this.level] > LOG_LEVELS['info']){
6
6
  return;
7
7
  }