@abtnode/logger 1.17.12 → 1.17.13-beta-20260512-042419-7b556a38
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/logger.js +1 -1
- package/package.json +17 -13
package/lib/logger.js
CHANGED
|
@@ -49,7 +49,7 @@ const getNoopLogger = (label = '') => {
|
|
|
49
49
|
// singleton per process
|
|
50
50
|
let addedRejectionExceptionTransport = false;
|
|
51
51
|
|
|
52
|
-
//
|
|
52
|
+
// splat is intentionally unused here; the splat array unexpectedly contains all metadata
|
|
53
53
|
const customPrintfCallback = ({ level, message, label, timestamp, [Symbol.for('splat')]: metadata }) => {
|
|
54
54
|
let result = `[${process.pid}] [${timestamp}] [${level}] [${label || 'default'}] [${message || ''}]`;
|
|
55
55
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/logger",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.13-beta-20260512-042419-7b556a38",
|
|
4
4
|
"description": "ABT Node logger lib",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logger",
|
|
7
7
|
"lib"
|
|
8
8
|
],
|
|
9
|
-
"author":
|
|
10
|
-
|
|
9
|
+
"author": {
|
|
10
|
+
"name": "ArcBlock",
|
|
11
|
+
"email": "blocklet@arcblock.io",
|
|
12
|
+
"url": "https://github.com/ArcBlock"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/ArcBlock/blocklet-server/tree/main/core/logger#readme",
|
|
11
15
|
"license": "Apache-2.0",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/ArcBlock/blocklet-server.git"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/ArcBlock/blocklet-server/issues"
|
|
22
|
+
},
|
|
12
23
|
"main": "lib/logger.js",
|
|
13
24
|
"publishConfig": {
|
|
14
25
|
"access": "public"
|
|
@@ -20,20 +31,13 @@
|
|
|
20
31
|
"files": [
|
|
21
32
|
"lib"
|
|
22
33
|
],
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/ArcBlock/blocklet-server.git"
|
|
26
|
-
},
|
|
27
34
|
"scripts": {
|
|
28
35
|
"lint": "eslint tests lib",
|
|
29
36
|
"lint:fix": "eslint --fix tests lib"
|
|
30
37
|
},
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ArcBlock/blocklet-server/issues"
|
|
33
|
-
},
|
|
34
38
|
"dependencies": {
|
|
35
|
-
"@abtnode/constant": "1.17.
|
|
36
|
-
"@abtnode/util": "1.17.
|
|
39
|
+
"@abtnode/constant": "1.17.13-beta-20260512-042419-7b556a38",
|
|
40
|
+
"@abtnode/util": "1.17.13-beta-20260512-042419-7b556a38",
|
|
37
41
|
"@abtnode/winston-daily-rotate-file": "^5.0.1",
|
|
38
42
|
"debug": "^4.4.1",
|
|
39
43
|
"fast-safe-stringify": "^2.1.1",
|
|
@@ -46,5 +50,5 @@
|
|
|
46
50
|
"devDependencies": {
|
|
47
51
|
"express": "^4.18.2"
|
|
48
52
|
},
|
|
49
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "2d9bc75c45b999ed599bb396e93cf5f2d53c4d52"
|
|
50
54
|
}
|