Skip to content

Commit

Permalink
Revert "Update actor.py"
Browse files Browse the repository at this point in the history
This reverts commit 3e8ac4a.
  • Loading branch information
z0z0r4 committed Jul 27, 2024
1 parent 3e8ac4a commit 121c651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dramatiq/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(
priority: int,
options: Dict[str, Any],
) -> None:
self.logger = get_logger(fn.__qualname__, actor_name)
self.logger = get_logger(fn.__module__, actor_name)
self.fn = async_to_sync(fn) if iscoroutinefunction(fn) else fn
self.broker = broker
self.actor_name = actor_name
Expand Down

0 comments on commit 121c651

Please sign in to comment.