@rayondigital/nest-dapr 0.9.53 → 0.9.54
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.
|
@@ -51,6 +51,9 @@ let NestActorManager = NestActorManager_1 = class NestActorManager {
|
|
|
51
51
|
}
|
|
52
52
|
catch (error) {
|
|
53
53
|
common_1.Logger.error(error);
|
|
54
|
+
if (error.stack) {
|
|
55
|
+
common_1.Logger.error(error.stack);
|
|
56
|
+
}
|
|
54
57
|
throw error;
|
|
55
58
|
}
|
|
56
59
|
return instance;
|
|
@@ -72,6 +75,9 @@ let NestActorManager = NestActorManager_1 = class NestActorManager {
|
|
|
72
75
|
catch (error) {
|
|
73
76
|
common_1.Logger.error(`Error deactivating actor ${actorId}`);
|
|
74
77
|
common_1.Logger.error(error);
|
|
78
|
+
if (error.stack) {
|
|
79
|
+
common_1.Logger.error(error.stack);
|
|
80
|
+
}
|
|
75
81
|
}
|
|
76
82
|
});
|
|
77
83
|
};
|
|
@@ -138,6 +144,9 @@ let NestActorManager = NestActorManager_1 = class NestActorManager {
|
|
|
138
144
|
catch (error) {
|
|
139
145
|
common_1.Logger.error(`Error invoking actor method ${actorId}/${methodName}`);
|
|
140
146
|
common_1.Logger.error(error);
|
|
147
|
+
if (error.stack) {
|
|
148
|
+
common_1.Logger.error(error.stack);
|
|
149
|
+
}
|
|
141
150
|
throw error;
|
|
142
151
|
}
|
|
143
152
|
});
|
|
@@ -168,6 +177,9 @@ let NestActorManager = NestActorManager_1 = class NestActorManager {
|
|
|
168
177
|
}
|
|
169
178
|
catch (error) {
|
|
170
179
|
common_1.Logger.error(error);
|
|
180
|
+
if (error.stack) {
|
|
181
|
+
common_1.Logger.error(error.stack);
|
|
182
|
+
}
|
|
171
183
|
throw error;
|
|
172
184
|
}
|
|
173
185
|
});
|
package/package.json
CHANGED