@springtree/eva-sdk-core-logger 1.2.0 → 1.2.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 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.1](https://github.com/springtreesolutions/eva-sdk-repo/compare/@springtree/eva-sdk-core-logger@1.2.0...@springtree/eva-sdk-core-logger@1.2.1) (2022-01-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **logger:** new logger needs an invocation ([7d6b85b](https://github.com/springtreesolutions/eva-sdk-repo/commit/7d6b85badc364e04e379f478f4f3297bb5a11bde))
12
+
13
+
14
+
15
+
16
+
6
17
  # 1.2.0 (2022-01-18)
7
18
 
8
19
 
package/README.md CHANGED
@@ -15,9 +15,9 @@ setLogLevel('warning');
15
15
 
16
16
  // Not visible due to log level
17
17
  //
18
- logger.debug( 'Hi mom!' );
18
+ logger.debug( 'Hi mom!' )();
19
19
 
20
20
  // This will be a visible log message
21
21
  //
22
- logger.warn( 'Danger Will Robinson!' );
22
+ logger.warn( 'Danger Will Robinson!' )();
23
23
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@springtree/eva-sdk-core-logger",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
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": "4cedb8f3db3e69568918aaf51b565731e9ff4c2f"
33
+ "gitHead": "2fb40bbe2d83bb7a3d36096fa0306bc6bdd57d96"
34
34
  }