@rsdk/logging 5.4.0-next.4 → 5.4.0-next.6

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,14 @@
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
+ ## [5.4.0-next.6](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.5...v5.4.0-next.6) (2024-11-28)
7
+
8
+ **Note:** Version bump only for package @rsdk/logging
9
+
10
+ ## [5.4.0-next.5](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.4...v5.4.0-next.5) (2024-11-28)
11
+
12
+ **Note:** Version bump only for package @rsdk/logging
13
+
6
14
  ## [5.4.0-next.4](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.3...v5.4.0-next.4) (2024-11-27)
7
15
 
8
16
  **Note:** Version bump only for package @rsdk/logging
package/dist/helpers.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.stringifyContext = void 0;
4
- const stringifyContext = (context) => typeof context === 'function' ? context.name : context ?? 'NO_CONTEXT';
4
+ const stringifyContext = (context) => typeof context === 'function' ? context.name : (context ?? 'NO_CONTEXT');
5
5
  exports.stringifyContext = stringifyContext;
6
6
  //# sourceMappingURL=helpers.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.js","sourceRoot":"","sources":["../src/helpers.ts"],"names":[],"mappings":";;;AAEO,MAAM,gBAAgB,GAAG,CAAC,OAAuB,EAAU,EAAE,CAClE,OAAO,OAAO,KAAK,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,IAAI,YAAY,CAAC;AAD5D,QAAA,gBAAgB,oBAC4C"}
1
+ {"version":3,"file":"helpers.js","sourceRoot":"","sources":["../src/helpers.ts"],"names":[],"mappings":";;;AAEO,MAAM,gBAAgB,GAAG,CAAC,OAAuB,EAAU,EAAE,CAClE,OAAO,OAAO,KAAK,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,OAAO,IAAI,YAAY,CAAC,CAAC;AAD9D,QAAA,gBAAgB,oBAC8C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/logging",
3
- "version": "5.4.0-next.4",
3
+ "version": "5.4.0-next.6",
4
4
  "description": "Base framework independent logging functionality",
5
5
  "license": "Apache License 2.0",
6
6
  "publishConfig": {
@@ -17,5 +17,5 @@
17
17
  "peerDependencies": {
18
18
  "@rsdk/common": "*"
19
19
  },
20
- "gitHead": "6f7d6802d4dc34620f3c0e8c8ec73887df36a647"
20
+ "gitHead": "acc1405be758b5ba4d2e8eda8d34b3c4f60a813f"
21
21
  }
package/src/helpers.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import type { LoggingContext } from './types';
2
2
 
3
3
  export const stringifyContext = (context: LoggingContext): string =>
4
- typeof context === 'function' ? context.name : context ?? 'NO_CONTEXT';
4
+ typeof context === 'function' ? context.name : (context ?? 'NO_CONTEXT');