@athenna/logger 1.3.4 → 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.
|
|
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,8 +48,8 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@athenna/common": "1.0.0",
|
|
51
|
-
"@athenna/config": "1.1.
|
|
52
|
-
"@athenna/ioc": "1.2.
|
|
51
|
+
"@athenna/config": "1.1.9",
|
|
52
|
+
"@athenna/ioc": "1.2.8",
|
|
53
53
|
"axios": "0.26.1",
|
|
54
54
|
"chalk": "5.0.1",
|
|
55
55
|
"telegraf": "4.7.0"
|
|
@@ -134,6 +134,10 @@
|
|
|
134
134
|
"es2021": true,
|
|
135
135
|
"node": true
|
|
136
136
|
},
|
|
137
|
+
"globals": {
|
|
138
|
+
"Env": true,
|
|
139
|
+
"ioc": true
|
|
140
|
+
},
|
|
137
141
|
"plugins": [
|
|
138
142
|
"prettier"
|
|
139
143
|
],
|
|
@@ -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 "
|
|
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
|
}
|