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 committed Jan 22, 2024
1 parent 8f59c82 commit d321548
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 d321548

Please sign in to comment.