Skip to content

Commit

Permalink
fix(Designer): Fixed error log error object passing in `updateCallbac…
Browse files Browse the repository at this point in the history
…kUrlInInputs` (#4964)

Fixed error log error object
  • Loading branch information
rllyy97 committed Jun 11, 2024
1 parent 0564692 commit 43643dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/designer/src/lib/core/actions/bjsworkflow/initialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ export const updateCallbackUrlInInputs = async (
LoggerService().log({
level: LogEntryLevel.Error,
area: 'CallbackUrl_Update',
message: `Unable to initialize callback url for manual trigger, error ${error}`,
message: 'Unable to initialize callback url for manual trigger.',
error: error instanceof Error ? error : undefined,
});
}
}
Expand Down

0 comments on commit 43643dc

Please sign in to comment.