@springtree/eva-sdk-core-logger 1.2.2 → 1.2.3
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
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## 1.2.3 (2022-01-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **logger:** default log level set to debug ([bdc5cae](https://github.com/springtreesolutions/eva-sdk-repo/commit/bdc5caebd5579eb141498e08a210d6e899f64054))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.2.2](https://github.com/springtreesolutions/eva-sdk-repo/compare/@springtree/eva-sdk-core-logger@1.2.1...@springtree/eva-sdk-core-logger@1.2.2) (2022-01-18)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -15,7 +15,7 @@ var lib_1 = lib.LoggerFactory;
|
|
|
15
15
|
lib.logLevels;
|
|
16
16
|
|
|
17
17
|
const factory = new lib_1();
|
|
18
|
-
factory.setLogWarnings(
|
|
18
|
+
factory.setLogWarnings('debug');
|
|
19
19
|
let logger = factory.getLogger('EVA-SDK');
|
|
20
20
|
const setLogLevel = (level) => {
|
|
21
21
|
factory.setLogWarnings(level);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LoggerFactory } from 'lines-logger';
|
|
2
2
|
export const factory = new LoggerFactory();
|
|
3
|
-
factory.setLogWarnings(
|
|
3
|
+
factory.setLogWarnings('debug');
|
|
4
4
|
export let logger = factory.getLogger('EVA-SDK');
|
|
5
5
|
export const setLogLevel = (level) => {
|
|
6
6
|
factory.setLogWarnings(level);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eva-sdk-core-logger.js","sourceRoot":"","sources":["../src/eva-sdk-core-logger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAY,MAAM,cAAc,CAAC;AAEvD,MAAM,CAAC,MAAM,OAAO,GAAG,IAAI,aAAa,EAAE,CAAC;AAC3C,OAAO,CAAC,cAAc,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"eva-sdk-core-logger.js","sourceRoot":"","sources":["../src/eva-sdk-core-logger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAY,MAAM,cAAc,CAAC;AAEvD,MAAM,CAAC,MAAM,OAAO,GAAG,IAAI,aAAa,EAAE,CAAC;AAC3C,OAAO,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;AAEhC,MAAM,CAAC,IAAI,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC;AAEjD,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,KAAe,EAAE,EAAE;IAC7C,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;IAC9B,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC;AACxC,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,OAAe,EAAE,EAAE;IAC9C,OAAO,OAAO,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;AACpC,CAAC,CAAC"}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
lib.logLevels;
|
|
22
22
|
|
|
23
23
|
const factory = new lib_1();
|
|
24
|
-
factory.setLogWarnings(
|
|
24
|
+
factory.setLogWarnings('debug');
|
|
25
25
|
exports.logger = factory.getLogger('EVA-SDK');
|
|
26
26
|
const setLogLevel = (level) => {
|
|
27
27
|
factory.setLogWarnings(level);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@springtree/eva-sdk-core-logger",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "The shared logging implementation for the EVA SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eva",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"lines-logger": "^2.1.2"
|
|
31
31
|
},
|
|
32
32
|
"private": false,
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "32562a612f9e417a4ae9228be6466677e268c405"
|
|
34
34
|
}
|