Skip to content

Commit

Permalink
Properly display request originator (#617)
Browse files Browse the repository at this point in the history
Fixes #616.
  • Loading branch information
jchristgit authored Jul 24, 2024
1 parent b7b684b commit 5e1f1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nostrum/api/ratelimiter.ex
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ defmodule Nostrum.Api.Ratelimiter do
{{_bucket, request, from}, running_without_it} = Map.pop(running, stream)

Logger.warning(
"Request to #{inspect(request.route)} queued by #{from} was closed abnormally, requeueing"
"Request to #{inspect(request.route)} queued by #{inspect(from)} was closed abnormally, requeueing"
)

{:keep_state, %{data | running: running_without_it},
Expand Down

0 comments on commit 5e1f1d1

Please sign in to comment.