We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8727f commit cf54750Copy full SHA for cf54750
src/MicroflowTimer/widget/MicroflowTimer.js
@@ -191,7 +191,7 @@ define([
191
}
192
}),
193
error: lang.hitch(this, function(error) {
194
- logger.error(this.id + ": An error ocurred while executing microflow: ", error);
+ mx.ui.error("An error ocurred while executing microflow" + error.message);
195
})
196
};
197
if (!mx.version || mx.version && parseInt(mx.version.split(".")[0]) < 7) {
@@ -225,7 +225,7 @@ define([
225
226
227
228
- mx.ui.error("An error ocurred while executing nanoflow");
+ mx.ui.error("An error ocurred while executing nanoflow" + error.message);
229
230
});
231
0 commit comments