@cryptexlabs/codex-nodejs-common 0.10.8 → 0.10.9
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/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptexlabs/codex-nodejs-common",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.9",
|
|
4
4
|
"description": "Common code for Codex framework",
|
|
5
5
|
"main": "lib/src/index.js",
|
|
6
6
|
"repository": "git@gitlab.com:cryptexlabs/public/codex-nodejs-common.git",
|
|
@@ -81,8 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
"resolutions": {
|
|
83
83
|
"axios": "0.19.0",
|
|
84
|
-
"**/undici": "5.0.0"
|
|
85
|
-
"**/@elastic/transport": "8.7.1"
|
|
84
|
+
"**/undici": "5.0.0"
|
|
86
85
|
},
|
|
87
86
|
"husky": {
|
|
88
87
|
"hooks": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logging-config.interface.js","sourceRoot":"","sources":["../../../src/config/logging-config.interface.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"logging-config.interface.js","sourceRoot":"","sources":["../../../src/config/logging-config.interface.ts"],"names":[],"mappings":";;;AASa,QAAA,kBAAkB,GAAmC;IAChE,KAAK,EAAE,EAAE;IACT,OAAO,EAAE,EAAE;IACX,KAAK,EAAE,EAAE;IACT,IAAI,EAAE,EAAE;IACR,IAAI,EAAE,EAAE;IACR,KAAK,EAAE,EAAE;IACT,KAAK,EAAE,EAAE;CACV,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptexlabs/codex-nodejs-common",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.9",
|
|
4
4
|
"description": "Common code for Codex framework",
|
|
5
5
|
"main": "lib/src/index.js",
|
|
6
6
|
"repository": "git@gitlab.com:cryptexlabs/public/codex-nodejs-common.git",
|
|
@@ -81,8 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
"resolutions": {
|
|
83
83
|
"axios": "0.19.0",
|
|
84
|
-
"**/undici": "5.0.0"
|
|
85
|
-
"**/@elastic/transport": "8.7.1"
|
|
84
|
+
"**/undici": "5.0.0"
|
|
86
85
|
},
|
|
87
86
|
"husky": {
|
|
88
87
|
"hooks": {
|
|
@@ -1,7 +1,15 @@
|
|
|
1
|
-
export type LOG_LEVEL =
|
|
1
|
+
export type LOG_LEVEL =
|
|
2
|
+
| "fatal"
|
|
3
|
+
| "error"
|
|
4
|
+
| "warn"
|
|
5
|
+
| "info"
|
|
6
|
+
| "debug"
|
|
7
|
+
| "trace"
|
|
8
|
+
| "verbose";
|
|
2
9
|
|
|
3
10
|
export const DEFAULT_LOG_LEVELS: { [key in LOG_LEVEL]: number } = {
|
|
4
11
|
trace: 10,
|
|
12
|
+
verbose: 10,
|
|
5
13
|
debug: 20,
|
|
6
14
|
info: 30,
|
|
7
15
|
warn: 40,
|