We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f30aaf4 commit 36af4bdCopy full SHA for 36af4bd
core/ui/src/mixins/notification.js
@@ -207,8 +207,6 @@ export default {
207
const taskContext = contextResponse.data.data.context;
208
let taskResult;
209
210
- console.debug(taskPath, taskContext, payload);
211
-
212
if (["completed", "aborted", "validation-failed"].includes(taskStatus)) {
213
// get output and error
214
const [err, statusResponse] = await to(this.getTaskStatus(taskPath));
@@ -225,7 +223,13 @@ export default {
225
223
226
224
taskResult = statusResponse.data.data;
227
228
- console.debug("taskResult", taskContext.action, taskResult);
+ console.debug(
+ taskContext.action,
+ "context:",
229
+ taskContext,
230
+ "result:",
231
+ taskResult
232
+ );
233
234
if (taskStatus === "validation-failed") {
235
// show validation errors
0 commit comments