orator 6.0.3 → 6.0.4
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": "orator",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"description": "Unopinionated API http server abstraction - REST or IPC",
|
|
5
5
|
"main": "source/Orator.js",
|
|
6
6
|
"scripts": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"homepage": "https://github.com/stevenvelozo/orator",
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"fable": "^3.1.57",
|
|
55
|
-
"quackage": "^1.0.
|
|
55
|
+
"quackage": "^1.0.59"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"fable-serviceproviderbase": "^3.0.19",
|
|
@@ -67,7 +67,7 @@ class OratorServiceServerIPC extends libOratorServiceServerBase
|
|
|
67
67
|
{
|
|
68
68
|
if (pError)
|
|
69
69
|
{
|
|
70
|
-
this.log.error(`IPC Provider preBehaviorFunction
|
|
70
|
+
this.log.error(`IPC Provider preBehaviorFunction failed with error: ${pError}`, pError);
|
|
71
71
|
}
|
|
72
72
|
return fNext(pError);
|
|
73
73
|
});
|
|
@@ -104,7 +104,7 @@ class OratorServiceServerIPC extends libOratorServiceServerBase
|
|
|
104
104
|
{
|
|
105
105
|
if (pError)
|
|
106
106
|
{
|
|
107
|
-
this.log.error(`IPC Provider postBehaviorFunction
|
|
107
|
+
this.log.error(`IPC Provider postBehaviorFunction failed with error: ${pError}`, pError);
|
|
108
108
|
}
|
|
109
109
|
return fNext(pError);
|
|
110
110
|
});
|
|
@@ -172,7 +172,7 @@ class OratorServiceServerIPC extends libOratorServiceServerBase
|
|
|
172
172
|
{
|
|
173
173
|
if (pBehaviorFunctionError)
|
|
174
174
|
{
|
|
175
|
-
this.log.error(`IPC Provider behavior function
|
|
175
|
+
this.log.error(`IPC Provider behavior function failed with error: ${pBehaviorFunctionError}`, pBehaviorFunctionError);
|
|
176
176
|
return fReject(pBehaviorFunctionError);
|
|
177
177
|
}
|
|
178
178
|
return fResolve();
|