Skip to content

Commit

Permalink
fix(preprocessing): add more information to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
fengelniederhammer committed Sep 2, 2024
1 parent be7ee37 commit d0cccc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def call_function(
result = func(input_data, output_field, args=args)
except Exception as e:
message = (
f"Error calling function {function_name}"
f"Error calling function {function_name} for output field {output_field} "
f"with input {input_data} and args {args}: {e}"
)
logger.exception(message)
Expand Down

0 comments on commit d0cccc9

Please sign in to comment.