You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying to test out the feature where method arguments are included in the stack trace (see filter_args config option), but can't make it work. What am I doing wrong?
@joshuap I have debugged the issue, here is the stack trace that I'm receiving from my phoenix app , which I'm suspecting is the same stack trace that honey badger might be receiving from your end.
In this case , the args is received as an integer which represents the arity of the function.
The format_args/2 which takes in the arg and filter_args will always match line backtrace.ex 56 returning an empty list hence not displaying the function with its argument i.e raise_error(%{ conn inspect output }, "random string")
I've been trying to test out the feature where method arguments are included in the stack trace (see
filter_args
config option), but can't make it work. What am I doing wrong?Steps to Reproduce
honeybadger
inconfig/config.exs
lib/hello_web/router.ex
lib/hello_web/controllers/page_controller.ex
Result
No args:
I'm expecting to see something like:
raise_error(%{ conn inspect output }, "random string")
The text was updated successfully, but these errors were encountered: