diff --git a/nomen/notifications.py b/nomen/notifications.py index 9ea4839..95e4461 100644 --- a/nomen/notifications.py +++ b/nomen/notifications.py @@ -11,6 +11,12 @@ log.setLevel(logging.INFO) async def handle_notification(db_updates, ctx, message, keyword, user_id): + """ + Async task to dispatch a notification + """ + + log.debug(f"- Handling `{keyword}` for {user_id}") + member = await ctx.guild.getch_member(user_id) if not await can_view(ctx, member):