@rsdk/logging 3.6.0-next.6 → 4.0.0-next.1
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/CHANGELOG.md +10 -0
- package/dist/defaults.d.ts +1 -1
- package/dist/defaults.js +1 -1
- package/package.json +2 -2
- package/src/defaults.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.0-next.1](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.0...v4.0.0-next.1) (2023-11-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* default log level is debug ([efc3e41](https://github.com/R-Vision/rsdk/commit/efc3e4119aff64af58a42fc04b9ee38ec54c53f4))
|
|
11
|
+
|
|
12
|
+
## [3.6.0](https://github.com/R-Vision/rsdk/compare/v3.6.0-next.8...v3.6.0) (2023-10-20)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @rsdk/logging
|
|
15
|
+
|
|
6
16
|
## [3.6.0-next.6](https://github.com/R-Vision/rsdk/compare/v3.6.0-next.5...v3.6.0-next.6) (2023-10-20)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/dist/defaults.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { LogLevel } from './types';
|
|
2
|
-
export declare const DEFAULT_LEVEL = LogLevel.
|
|
2
|
+
export declare const DEFAULT_LEVEL = LogLevel.debug;
|
package/dist/defaults.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DEFAULT_LEVEL = void 0;
|
|
4
4
|
const types_1 = require("./types");
|
|
5
|
-
exports.DEFAULT_LEVEL = types_1.LogLevel.
|
|
5
|
+
exports.DEFAULT_LEVEL = types_1.LogLevel.debug;
|
|
6
6
|
//# sourceMappingURL=defaults.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdk/logging",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-next.1",
|
|
4
4
|
"description": "Base framework independent logging functionality",
|
|
5
5
|
"license": "Apache License 2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@rsdk/common": "^3.5.0"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "d21a800ef5dd191b5effec59846c3a44a7ca3d1e"
|
|
23
23
|
}
|
package/src/defaults.ts
CHANGED