@kronos-integration/service 15.0.0 → 15.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/service",
3
- "version": "15.0.0",
3
+ "version": "15.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -1,4 +1,3 @@
1
- import { getAttributes } from "pacc";
2
1
  import { Service } from "./service.mjs";
3
2
  import { keyValue2Object } from "./util.mjs";
4
3
 
@@ -76,17 +75,7 @@ export class ServiceConfig extends Service {
76
75
 
77
76
  const merged = merge(this.preservedConfigs.get(name), c);
78
77
  this.trace(
79
- level =>
80
- `Preserve config ${name} ${JSON.stringify(
81
- getAttributes(
82
- Object.fromEntries(
83
- Object.entries(service.attributes).filter(
84
- ([n, a]) => !a.private
85
- )
86
- ),
87
- service.attributes
88
- )
89
- )}`
78
+ level => `Preserve config ${name} ${JSON.stringify(merged)}`
90
79
  );
91
80
 
92
81
  this.preservedConfigs.set(name, merged);