@athenna/logger 1.3.5 → 1.3.6

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": "@athenna/logger",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "The Athenna logging solution. Log in stdout, files and buckets.",
5
5
  "license": "MIT",
6
6
  "author": "João Lenon <lenon@athenna.io>",
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@athenna/common": "1.0.0",
51
- "@athenna/config": "1.1.8",
51
+ "@athenna/config": "1.1.9",
52
52
  "@athenna/ioc": "1.2.8",
53
53
  "axios": "0.26.1",
54
54
  "chalk": "5.0.1",
@@ -32,7 +32,7 @@ export class NotImplementedConfigException extends Exception {
32
32
  help += `The "Config.get('logging.channels') is empty, maybe your configuration files are not loaded?`
33
33
  }
34
34
 
35
- help += ` Create your configuration inside channels object to use it. Or load your configuration files using "new Config().safeLoad(Path.config('logging.js'))`
35
+ help += ` Create your configuration inside channels object to use it. Or load your configuration files using "Config.safeLoad(Path.config('logging.js'))`
36
36
 
37
37
  super(content, 500, 'E_NOT_IMPLEMENTED_CONFIG_ERROR', help)
38
38
  }