@kronos-integration/service 13.1.6 → 13.1.8
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 +3 -3
- package/src/service.mjs +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kronos-integration/service",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@kronos-integration/endpoint": "^10.1.1",
|
|
40
|
-
"@kronos-integration/interceptor": "^12.0.
|
|
40
|
+
"@kronos-integration/interceptor": "^12.0.4",
|
|
41
41
|
"loglevel-mixin": "^7.2.5",
|
|
42
|
-
"pacc": "^4.1.
|
|
42
|
+
"pacc": "^4.1.1",
|
|
43
43
|
"statetransition-mixin": "^8.1.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
package/src/service.mjs
CHANGED
|
@@ -90,13 +90,6 @@ export class Service extends EndpointsMixin(
|
|
|
90
90
|
...default_attribute,
|
|
91
91
|
description: `logging level one of: ${Object.keys(defaultLogLevels)}`,
|
|
92
92
|
default: defaultLogLevels.info,
|
|
93
|
-
set(newValue) {
|
|
94
|
-
if (newValue !== undefined) {
|
|
95
|
-
this.logLevel = newValue;
|
|
96
|
-
return true;
|
|
97
|
-
}
|
|
98
|
-
return false;
|
|
99
|
-
},
|
|
100
93
|
get() {
|
|
101
94
|
return this.logLevel.name;
|
|
102
95
|
}
|