@athenna/logger 5.9.0 → 5.11.0
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": "5.
|
|
3
|
+
"version": "5.11.0",
|
|
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,6 +48,7 @@
|
|
|
48
48
|
"./types": "./src/types/index.js",
|
|
49
49
|
"./package": "./package.json",
|
|
50
50
|
"./package.json": "./package.json",
|
|
51
|
+
"./standalone": "./src/standalone/index.js",
|
|
51
52
|
"./providers/LoggerProvider": "./src/providers/LoggerProvider.js"
|
|
52
53
|
},
|
|
53
54
|
"imports": {
|
|
@@ -66,7 +67,7 @@
|
|
|
66
67
|
"telegraf": "^4.16.3"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
|
-
"@athenna/common": "^5.
|
|
70
|
+
"@athenna/common": "^5.25.0",
|
|
70
71
|
"@athenna/config": "^5.4.0",
|
|
71
72
|
"@athenna/ioc": "^5.2.0",
|
|
72
73
|
"@athenna/test": "^5.5.0",
|
|
@@ -50,6 +50,16 @@ export declare const VANILLA_CHANNELS: {
|
|
|
50
50
|
formatter: string;
|
|
51
51
|
driver: string;
|
|
52
52
|
};
|
|
53
|
+
queue: {
|
|
54
|
+
level: string;
|
|
55
|
+
formatter: string;
|
|
56
|
+
driver: string;
|
|
57
|
+
};
|
|
58
|
+
worker: {
|
|
59
|
+
level: string;
|
|
60
|
+
formatter: string;
|
|
61
|
+
driver: string;
|
|
62
|
+
};
|
|
53
63
|
exception: {
|
|
54
64
|
level: string;
|
|
55
65
|
formatter: string;
|
|
@@ -51,6 +51,16 @@ export const VANILLA_CHANNELS = {
|
|
|
51
51
|
formatter: 'json',
|
|
52
52
|
driver: 'console'
|
|
53
53
|
},
|
|
54
|
+
queue: {
|
|
55
|
+
level: 'trace',
|
|
56
|
+
formatter: 'json',
|
|
57
|
+
driver: 'console'
|
|
58
|
+
},
|
|
59
|
+
worker: {
|
|
60
|
+
level: 'trace',
|
|
61
|
+
formatter: 'json',
|
|
62
|
+
driver: 'console'
|
|
63
|
+
},
|
|
54
64
|
exception: {
|
|
55
65
|
level: 'trace',
|
|
56
66
|
formatter: 'none',
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @athenna/logger
|
|
3
|
+
*
|
|
4
|
+
* (c) João Lenon <lenon@athenna.io>
|
|
5
|
+
*
|
|
6
|
+
* For the full copyright and license information, please view the LICENSE
|
|
7
|
+
* file that was distributed with this source code.
|
|
8
|
+
*/
|
|
9
|
+
export * from '#src/types';
|
|
10
|
+
export * from '#src/logger/Logger';
|
|
11
|
+
export * from '#src/drivers/Driver';
|
|
12
|
+
export * from '#src/helpers/AwsLogger';
|
|
13
|
+
export * from '#src/formatters/Formatter';
|
|
14
|
+
export * from '#src/helpers/FactoryHelper';
|
|
15
|
+
export * from '#src/factories/DriverFactory';
|
|
16
|
+
export * from '#src/factories/FormatterFactory';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @athenna/logger
|
|
3
|
+
*
|
|
4
|
+
* (c) João Lenon <lenon@athenna.io>
|
|
5
|
+
*
|
|
6
|
+
* For the full copyright and license information, please view the LICENSE
|
|
7
|
+
* file that was distributed with this source code.
|
|
8
|
+
*/
|
|
9
|
+
export * from '#src/types';
|
|
10
|
+
export * from '#src/logger/Logger';
|
|
11
|
+
export * from '#src/drivers/Driver';
|
|
12
|
+
export * from '#src/helpers/AwsLogger';
|
|
13
|
+
export * from '#src/formatters/Formatter';
|
|
14
|
+
export * from '#src/helpers/FactoryHelper';
|
|
15
|
+
export * from '#src/factories/DriverFactory';
|
|
16
|
+
export * from '#src/factories/FormatterFactory';
|