@athenna/logger 1.3.3 → 1.3.5
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 +8 -3
- package/src/Drivers/Driver.js +1 -1
- package/src/Drivers/FileDriver.js +1 -1
- package/src/Drivers/StackDriver.js +1 -1
- package/src/Exceptions/DriverExistException.js +1 -1
- package/src/Exceptions/FormatterExistException.js +1 -1
- package/src/Exceptions/NotFoundDriverException.js +1 -1
- package/src/Exceptions/NotFoundFormatterException.js +1 -1
- package/src/Exceptions/NotImplementedConfigException.js +2 -1
- package/src/Factories/DriverFactory.js +1 -1
- package/src/Formatters/Formatter.js +1 -1
- package/src/Formatters/JsonFormatter.js +1 -1
- package/src/Helpers/FactoryHelper.js +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@athenna/logger",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
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>",
|
|
@@ -47,8 +47,9 @@
|
|
|
47
47
|
"./providers/LoggerProvider": "./src/Providers/LoggerProvider.js"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@athenna/
|
|
51
|
-
"@
|
|
50
|
+
"@athenna/common": "1.0.0",
|
|
51
|
+
"@athenna/config": "1.1.8",
|
|
52
|
+
"@athenna/ioc": "1.2.8",
|
|
52
53
|
"axios": "0.26.1",
|
|
53
54
|
"chalk": "5.0.1",
|
|
54
55
|
"telegraf": "4.7.0"
|
|
@@ -133,6 +134,10 @@
|
|
|
133
134
|
"es2021": true,
|
|
134
135
|
"node": true
|
|
135
136
|
},
|
|
137
|
+
"globals": {
|
|
138
|
+
"Env": true,
|
|
139
|
+
"ioc": true
|
|
140
|
+
},
|
|
136
141
|
"plugins": [
|
|
137
142
|
"prettier"
|
|
138
143
|
],
|
package/src/Drivers/Driver.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* file that was distributed with this source code.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import { Exception } from '@
|
|
10
|
+
import { Exception } from '@athenna/common'
|
|
11
11
|
import { DriverFactory } from '#src/Factories/DriverFactory'
|
|
12
12
|
|
|
13
13
|
export class DriverExistException extends Exception {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* file that was distributed with this source code.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import { Exception } from '@
|
|
10
|
+
import { Exception } from '@athenna/common'
|
|
11
11
|
import { FormatterFactory } from '#src/Factories/FormatterFactory'
|
|
12
12
|
|
|
13
13
|
export class FormatterExistException extends Exception {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* file that was distributed with this source code.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import { Exception } from '@
|
|
10
|
+
import { Exception } from '@athenna/common'
|
|
11
11
|
import { DriverFactory } from '#src/Factories/DriverFactory'
|
|
12
12
|
|
|
13
13
|
export class NotFoundDriverException extends Exception {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* file that was distributed with this source code.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import { Exception } from '@
|
|
10
|
+
import { Exception } from '@athenna/common'
|
|
11
11
|
import { FormatterFactory } from '#src/Factories/FormatterFactory'
|
|
12
12
|
|
|
13
13
|
export class NotFoundFormatterException extends Exception {
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
* file that was distributed with this source code.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import { Config
|
|
10
|
+
import { Config } from '@athenna/config'
|
|
11
|
+
import { Exception } from '@athenna/common'
|
|
11
12
|
|
|
12
13
|
export class NotImplementedConfigException extends Exception {
|
|
13
14
|
/**
|
package/src/index.js
CHANGED