@xylabs/log 5.0.79 → 5.0.81
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/README.md +0 -131
- package/package.json +5 -9
- package/src/index.ts +0 -2
package/README.md
CHANGED
|
@@ -21,137 +21,6 @@ Base functionality used throughout XY Labs TypeScript/JavaScript libraries
|
|
|
21
21
|
|
|
22
22
|
***
|
|
23
23
|
|
|
24
|
-
## Classes
|
|
25
|
-
|
|
26
|
-
- [~~Log~~](#classes/Log)
|
|
27
|
-
|
|
28
|
-
### classes
|
|
29
|
-
|
|
30
|
-
### <a id="Log"></a>Log
|
|
31
|
-
|
|
32
|
-
[**@xylabs/log**](#../README)
|
|
33
|
-
|
|
34
|
-
***
|
|
35
|
-
|
|
36
|
-
## Deprecated
|
|
37
|
-
|
|
38
|
-
use @xylabs/logger instead
|
|
39
|
-
|
|
40
|
-
## Constructors
|
|
41
|
-
|
|
42
|
-
### Constructor
|
|
43
|
-
|
|
44
|
-
```ts
|
|
45
|
-
new Log(config): Log;
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
### Parameters
|
|
49
|
-
|
|
50
|
-
#### config
|
|
51
|
-
|
|
52
|
-
`LogConfig`
|
|
53
|
-
|
|
54
|
-
### Returns
|
|
55
|
-
|
|
56
|
-
`Log`
|
|
57
|
-
|
|
58
|
-
## Properties
|
|
59
|
-
|
|
60
|
-
### ~~config~~
|
|
61
|
-
|
|
62
|
-
```ts
|
|
63
|
-
protected config: LogConfig;
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
## Methods
|
|
67
|
-
|
|
68
|
-
### ~~debug()~~
|
|
69
|
-
|
|
70
|
-
```ts
|
|
71
|
-
debug(...params): void;
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
### Parameters
|
|
75
|
-
|
|
76
|
-
#### params
|
|
77
|
-
|
|
78
|
-
...`any`[]
|
|
79
|
-
|
|
80
|
-
### Returns
|
|
81
|
-
|
|
82
|
-
`void`
|
|
83
|
-
|
|
84
|
-
***
|
|
85
|
-
|
|
86
|
-
### ~~error()~~
|
|
87
|
-
|
|
88
|
-
```ts
|
|
89
|
-
error(...params): void;
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
### Parameters
|
|
93
|
-
|
|
94
|
-
#### params
|
|
95
|
-
|
|
96
|
-
...`any`[]
|
|
97
|
-
|
|
98
|
-
### Returns
|
|
99
|
-
|
|
100
|
-
`void`
|
|
101
|
-
|
|
102
|
-
***
|
|
103
|
-
|
|
104
|
-
### ~~info()~~
|
|
105
|
-
|
|
106
|
-
```ts
|
|
107
|
-
info(...params): void;
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### Parameters
|
|
111
|
-
|
|
112
|
-
#### params
|
|
113
|
-
|
|
114
|
-
...`any`[]
|
|
115
|
-
|
|
116
|
-
### Returns
|
|
117
|
-
|
|
118
|
-
`void`
|
|
119
|
-
|
|
120
|
-
***
|
|
121
|
-
|
|
122
|
-
### ~~log()~~
|
|
123
|
-
|
|
124
|
-
```ts
|
|
125
|
-
log(...params): void;
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
### Parameters
|
|
129
|
-
|
|
130
|
-
#### params
|
|
131
|
-
|
|
132
|
-
...`any`[]
|
|
133
|
-
|
|
134
|
-
### Returns
|
|
135
|
-
|
|
136
|
-
`void`
|
|
137
|
-
|
|
138
|
-
***
|
|
139
|
-
|
|
140
|
-
### ~~warn()~~
|
|
141
|
-
|
|
142
|
-
```ts
|
|
143
|
-
warn(...params): void;
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
### Parameters
|
|
147
|
-
|
|
148
|
-
#### params
|
|
149
|
-
|
|
150
|
-
...`any`[]
|
|
151
|
-
|
|
152
|
-
### Returns
|
|
153
|
-
|
|
154
|
-
`void`
|
|
155
24
|
|
|
156
25
|
|
|
157
26
|
Part of [sdk-js](https://www.npmjs.com/package/@xyo-network/sdk-js)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/log",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.81",
|
|
4
4
|
"description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"log",
|
|
@@ -31,27 +31,23 @@
|
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
33
33
|
"types": "./dist/neutral/index.d.ts",
|
|
34
|
-
"source": "./src/index.ts",
|
|
35
34
|
"default": "./dist/neutral/index.mjs"
|
|
36
35
|
},
|
|
37
36
|
"./package.json": "./package.json"
|
|
38
37
|
},
|
|
39
38
|
"module": "./dist/neutral/index.mjs",
|
|
40
|
-
"source": "./src/index.ts",
|
|
41
39
|
"types": "./dist/neutral/index.d.ts",
|
|
42
40
|
"files": [
|
|
43
41
|
"dist",
|
|
44
|
-
"src",
|
|
45
42
|
"!**/*.bench.*",
|
|
46
43
|
"!**/*.spec.*",
|
|
47
44
|
"!**/*.test.*"
|
|
48
45
|
],
|
|
49
46
|
"devDependencies": {
|
|
50
|
-
"@xylabs/ts-scripts-yarn3": "~7.
|
|
51
|
-
"@xylabs/tsconfig
|
|
52
|
-
"
|
|
53
|
-
"typescript": "~5.9.3"
|
|
54
|
-
"vitest": "~4.0.18"
|
|
47
|
+
"@xylabs/ts-scripts-yarn3": "~7.4.11",
|
|
48
|
+
"@xylabs/tsconfig": "~7.4.11",
|
|
49
|
+
"@xylabs/tsconfig-dom": "~7.4.11",
|
|
50
|
+
"typescript": "~5.9.3"
|
|
55
51
|
},
|
|
56
52
|
"peerDependencies": {
|
|
57
53
|
"rollbar": "~2"
|
package/src/index.ts
DELETED