Skip to content

Commit

Permalink
Add stacktrace
Browse files Browse the repository at this point in the history
Try to figure out where `badarg` is coming from
  • Loading branch information
lukebakken authored and michaelklishin committed Jun 22, 2024
1 parent 8eaa545 commit 41936e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps/rabbit/src/rabbit_quorum_queue.erl
Original file line number Diff line number Diff line change
Expand Up @@ -498,9 +498,9 @@ handle_tick(QName,
ok
end
catch
_:Err ->
rabbit_log:debug("~ts: handle tick failed with ~p",
[rabbit_misc:rs(QName), Err]),
Class:Error:Stacktrace ->
rabbit_log:debug("~ts: handle tick failed with ~tp:~tp:~tp",
[rabbit_misc:rs(QName), Class, Error, Stacktrace]),
ok
end
end).
Expand Down

0 comments on commit 41936e2

Please sign in to comment.