@ceramicnetwork/logger 1.0.7 → 2.0.0-alpha.2
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 +8 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -13
- package/lib/index.js.map +1 -1
- package/lib/stream-helpers.d.ts +0 -0
- package/lib/stream-helpers.d.ts.map +0 -0
- package/lib/stream-helpers.js +5 -10
- package/lib/stream-helpers.js.map +1 -1
- package/package.json +13 -9
- package/CHANGELOG.md +0 -265
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
# Ceramic Logger
|
|
2
|
+

|
|
3
|
+
[](https://lbesson.mit-license.org/)
|
|
4
|
+
[](https://discord.gg/6VRZpGP)
|
|
5
|
+
[](https://twitter.com/ceramicnetwork)
|
|
2
6
|
|
|
3
7
|
> This package contains utilities to handle logging
|
|
4
8
|
|
|
@@ -7,6 +11,10 @@
|
|
|
7
11
|
$ npm install @ceramicnetwork/logger
|
|
8
12
|
```
|
|
9
13
|
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package.
|
|
17
|
+
|
|
10
18
|
## Contributing
|
|
11
19
|
We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works.
|
|
12
20
|
|
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './stream-helpers';
|
|
1
|
+
export * from './stream-helpers.js';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA"}
|
package/lib/index.js
CHANGED
|
@@ -1,14 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
-
}) : (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
o[k2] = m[k];
|
|
8
|
-
}));
|
|
9
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
-
};
|
|
12
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
__exportStar(require("./stream-helpers"), exports);
|
|
1
|
+
export * from './stream-helpers.js';
|
|
14
2
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA"}
|
package/lib/stream-helpers.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/lib/stream-helpers.js
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.RotatingFileStream = exports.SafeStreamHandler = void 0;
|
|
4
|
-
const rotating_file_stream_1 = require("rotating-file-stream");
|
|
5
|
-
class SafeStreamHandler {
|
|
1
|
+
import { createStream as createRfsStream } from 'rotating-file-stream';
|
|
2
|
+
export class SafeStreamHandler {
|
|
6
3
|
constructor(stream, name) {
|
|
7
4
|
this.ready = true;
|
|
8
5
|
this.stream = stream;
|
|
@@ -36,20 +33,19 @@ class SafeStreamHandler {
|
|
|
36
33
|
});
|
|
37
34
|
}
|
|
38
35
|
}
|
|
39
|
-
|
|
40
|
-
class RotatingFileStream {
|
|
36
|
+
export class RotatingFileStream {
|
|
41
37
|
constructor(filePath, writeImmediately, options) {
|
|
42
38
|
this.filePath = filePath;
|
|
43
39
|
this.immediate = writeImmediately;
|
|
44
40
|
this.options = options;
|
|
45
41
|
if (!this.immediate) {
|
|
46
|
-
this.stream =
|
|
42
|
+
this.stream = createRfsStream(this.filePath, options);
|
|
47
43
|
}
|
|
48
44
|
}
|
|
49
45
|
write(message) {
|
|
50
46
|
let fileStream = this.stream;
|
|
51
47
|
if (this.immediate) {
|
|
52
|
-
fileStream =
|
|
48
|
+
fileStream = createRfsStream(this.filePath, this.options);
|
|
53
49
|
}
|
|
54
50
|
const stream = new SafeStreamHandler(fileStream, this.filePath);
|
|
55
51
|
stream.write(message);
|
|
@@ -63,5 +59,4 @@ class RotatingFileStream {
|
|
|
63
59
|
}
|
|
64
60
|
}
|
|
65
61
|
}
|
|
66
|
-
exports.RotatingFileStream = RotatingFileStream;
|
|
67
62
|
//# sourceMappingURL=stream-helpers.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stream-helpers.js","sourceRoot":"","sources":["../src/stream-helpers.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stream-helpers.js","sourceRoot":"","sources":["../src/stream-helpers.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,IAAI,eAAe,EAAyB,MAAM,sBAAsB,CAAA;AAM7F,MAAM,OAAO,iBAAiB;IAK5B,YAAY,MAAgB,EAAE,IAAa;QAJpC,UAAK,GAAG,IAAI,CAAA;QAKjB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;QACpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;IAClB,CAAC;IAMM,KAAK,CAAC,OAAe;QAC1B,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;IAC3B,CAAC;IAMM,GAAG,CAAC,GAAG,IAAS;QACrB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAA;IAC1B,CAAC;IAES,WAAW,CAAC,OAAe;QACnC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE;YACf,OAAO,CAAC,IAAI,CAAC,gBAAgB,IAAI,CAAC,IAAI,6BAA6B,OAAO,GAAG,CAAC,CAAA;YAC9E,OAAM;SACP;QACD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;QAElB,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE;YAC9B,MAAM,GAAG,CAAA;QACX,CAAC,CAAC,CAAA;QACF,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE;YAC3B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;YACjB,OAAM;QACR,CAAC,CAAC,CAAA;QACF,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE;YAC5B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;YACjB,OAAM;QACR,CAAC,CAAC,CAAA;QACF,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE;YAC3C,OAAM;QACR,CAAC,CAAC,CAAA;IACJ,CAAC;CACF;AAMD,MAAM,OAAO,kBAAkB;IAM7B,YAAY,QAAgB,EAAE,gBAA0B,EAAE,OAAoB;QAC5E,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACxB,IAAI,CAAC,SAAS,GAAG,gBAAgB,CAAA;QACjC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACnB,IAAI,CAAC,MAAM,GAAG,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;SACtD;IACH,CAAC;IAMM,KAAK,CAAC,OAAe;QAC1B,IAAI,UAAU,GAAG,IAAI,CAAC,MAAM,CAAA;QAC5B,IAAI,IAAI,CAAC,SAAS,EAAE;YAClB,UAAU,GAAG,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;SAC1D;QACD,MAAM,MAAM,GAAG,IAAI,iBAAiB,CAAC,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAA;QAC/D,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;QACrB,IAAI,IAAI,CAAC,SAAS,EAAE;YAClB,MAAM,CAAC,GAAG,EAAE,CAAA;SACb;IACH,CAAC;IAQM,GAAG;QACR,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,EAAE;YAC7B,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,CAAA;SAClB;IACH,CAAC;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceramicnetwork/logger",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-alpha.2",
|
|
4
4
|
"description": "Ceramic file logging utilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ceramic",
|
|
@@ -12,27 +12,31 @@
|
|
|
12
12
|
"homepage": "",
|
|
13
13
|
"license": "(Apache-2.0 OR MIT)",
|
|
14
14
|
"directories": {
|
|
15
|
-
"lib": "lib"
|
|
15
|
+
"lib": "./lib"
|
|
16
16
|
},
|
|
17
|
-
"
|
|
18
|
-
|
|
17
|
+
"exports": {
|
|
18
|
+
".": "./lib/index.js"
|
|
19
|
+
},
|
|
20
|
+
"main": "./lib/index.js",
|
|
21
|
+
"types": "./lib/index.d.ts",
|
|
22
|
+
"type": "module",
|
|
19
23
|
"files": [
|
|
20
24
|
"lib"
|
|
21
25
|
],
|
|
26
|
+
"sideEffects": false,
|
|
22
27
|
"scripts": {
|
|
23
28
|
"test": "../../node_modules/.bin/jest --silent --coverage --passWithNoTests",
|
|
24
|
-
"build": "../../node_modules/.bin/tsc
|
|
29
|
+
"build": "../../node_modules/.bin/tsc --project tsconfig.json",
|
|
25
30
|
"prepublishOnly": "npm run build",
|
|
26
31
|
"prebuild": "npm run clean",
|
|
27
32
|
"lint": "../../node_modules/.bin/eslint ./src --ext .js,.jsx,.ts,.tsx",
|
|
28
33
|
"clean": "rm -rf ./lib"
|
|
29
34
|
},
|
|
30
35
|
"dependencies": {
|
|
31
|
-
"rotating-file-stream": "^
|
|
32
|
-
"tslib": "^2.1.0"
|
|
36
|
+
"rotating-file-stream": "^3.0.2"
|
|
33
37
|
},
|
|
34
38
|
"devDependencies": {
|
|
35
|
-
"@types/node": "^
|
|
39
|
+
"@types/node": "^17.0.5"
|
|
36
40
|
},
|
|
37
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "56c344ee94ab26dde88fb1dbee7441c9339b1d45"
|
|
38
42
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,265 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.0.7](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4...@ceramicnetwork/logger@1.0.7) (2022-01-09)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [1.0.6](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4...@ceramicnetwork/logger@1.0.6) (2022-01-09)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [1.0.5](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4...@ceramicnetwork/logger@1.0.5) (2022-01-09)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
## [1.0.4](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4-rc.6...@ceramicnetwork/logger@1.0.4) (2021-08-25)
|
|
32
|
-
|
|
33
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
## [1.0.4-rc.6](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4-rc.5...@ceramicnetwork/logger@1.0.4-rc.6) (2021-08-24)
|
|
40
|
-
|
|
41
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
## [1.0.4-rc.5](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4-rc.4...@ceramicnetwork/logger@1.0.4-rc.5) (2021-08-23)
|
|
48
|
-
|
|
49
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## 1.0.4-rc.4 (2021-08-23)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Bug Fixes
|
|
59
|
-
|
|
60
|
-
* **ci:** remove private flag ([9974009](https://github.com/ceramicnetwork/js-ceramic/commit/9974009be69382f2a2caf59f4ff72bf6aa12491b))
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
## [1.0.4-rc.3](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4-rc.2...@ceramicnetwork/logger@1.0.4-rc.3) (2021-08-22)
|
|
67
|
-
|
|
68
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
## [1.0.4-rc.2](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/logger@1.0.4-rc.1...@ceramicnetwork/logger@1.0.4-rc.2) (2021-08-22)
|
|
75
|
-
|
|
76
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## 1.0.4-rc.1 (2021-08-22)
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
### Bug Fixes
|
|
86
|
-
|
|
87
|
-
* **ci:** remove flag from npm ci cmd ([b8ca310](https://github.com/ceramicnetwork/js-ceramic/commit/b8ca3102963096626a46a3c78c705da26e977021))
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
## [1.0.4-rc.0](/compare/@ceramicnetwork/logger@1.0.3...@ceramicnetwork/logger@1.0.4-rc.0) (2021-08-13)
|
|
94
|
-
|
|
95
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
## [1.0.3](/compare/@ceramicnetwork/logger@1.0.2-rc.0...@ceramicnetwork/logger@1.0.3) (2021-08-11)
|
|
102
|
-
|
|
103
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
## [1.0.2](/compare/@ceramicnetwork/logger@1.0.2-rc.0...@ceramicnetwork/logger@1.0.2) (2021-08-11)
|
|
110
|
-
|
|
111
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
## [1.0.2-rc.0](/compare/@ceramicnetwork/logger@1.0.1...@ceramicnetwork/logger@1.0.2-rc.0) (2021-07-16)
|
|
118
|
-
|
|
119
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
## [1.0.1](/compare/@ceramicnetwork/logger@1.0.0...@ceramicnetwork/logger@1.0.1) (2021-05-25)
|
|
126
|
-
|
|
127
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
# [1.0.0](/compare/@ceramicnetwork/logger@1.0.0-rc.2...@ceramicnetwork/logger@1.0.0) (2021-05-06)
|
|
134
|
-
|
|
135
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
# [1.0.0-rc.2](/compare/@ceramicnetwork/logger@1.0.0-rc.1...@ceramicnetwork/logger@1.0.0-rc.2) (2021-04-20)
|
|
142
|
-
|
|
143
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
# [1.0.0-rc.1](/compare/@ceramicnetwork/logger@0.1.2-rc.0...@ceramicnetwork/logger@1.0.0-rc.1) (2021-04-19)
|
|
150
|
-
|
|
151
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
## [0.1.2-rc.0](/compare/@ceramicnetwork/logger@0.1.1...@ceramicnetwork/logger@0.1.2-rc.0) (2021-04-19)
|
|
158
|
-
|
|
159
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
## [0.1.1](/compare/@ceramicnetwork/logger@0.1.0...@ceramicnetwork/logger@0.1.1) (2021-04-02)
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
### Bug Fixes
|
|
169
|
-
|
|
170
|
-
* **common, logger:** Clean up dependencies (#1164) 191ad31, closes #1164
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
## [0.1.1-rc.3](/compare/@ceramicnetwork/logger@0.1.0...@ceramicnetwork/logger@0.1.1-rc.3) (2021-03-26)
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
### Bug Fixes
|
|
180
|
-
|
|
181
|
-
* **common, logger:** Clean up dependencies 57ffa67
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
## [0.1.1-rc.2](/compare/@ceramicnetwork/logger@0.1.0...@ceramicnetwork/logger@0.1.1-rc.2) (2021-03-26)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
### Bug Fixes
|
|
191
|
-
|
|
192
|
-
* **common, logger:** Clean up dependencies 2243d05
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
## [0.1.1-rc.1](/compare/@ceramicnetwork/logger@0.1.0...@ceramicnetwork/logger@0.1.1-rc.1) (2021-03-26)
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
### Bug Fixes
|
|
202
|
-
|
|
203
|
-
* **common, logger:** Clean up dependencies 2243d05
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
## [0.1.1-rc.0](/compare/@ceramicnetwork/logger@0.1.0...@ceramicnetwork/logger@0.1.1-rc.0) (2021-03-25)
|
|
210
|
-
|
|
211
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
# [0.1.0](/compare/@ceramicnetwork/logger@0.1.0-rc.5...@ceramicnetwork/logger@0.1.0) (2021-03-22)
|
|
218
|
-
|
|
219
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
# [0.1.0-rc.5](/compare/@ceramicnetwork/logger@0.1.0-rc.3...@ceramicnetwork/logger@0.1.0-rc.5) (2021-03-09)
|
|
226
|
-
|
|
227
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
# 0.1.0-rc.4 (2021-02-25)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
### Features
|
|
237
|
-
|
|
238
|
-
* **core:** Add new logger package ([#878](https://github.com/ceramicnetwork/js-ceramic/issues/878)) ([9756868](https://github.com/ceramicnetwork/js-ceramic/commit/9756868697344515635ca7fd634bd214bf419948))
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
# [0.1.0-rc.3](/compare/@ceramicnetwork/logger@0.1.0-rc.2...@ceramicnetwork/logger@0.1.0-rc.3) (2021-02-23)
|
|
245
|
-
|
|
246
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
# [0.1.0-rc.2](/compare/@ceramicnetwork/logger@0.1.0-rc.0...@ceramicnetwork/logger@0.1.0-rc.2) (2021-02-22)
|
|
253
|
-
|
|
254
|
-
**Note:** Version bump only for package @ceramicnetwork/logger
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
# 0.1.0-rc.0 (2021-02-22)
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
### Features
|
|
264
|
-
|
|
265
|
-
* **core:** Add new logger package (#878) 9756868, closes #878
|