Skip to content

Commit

Permalink
log arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
wslyvh committed Aug 20, 2024
1 parent 075d564 commit 243747d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pretalx_webhook/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ def on_schedule_release(sender, schedule, user, **kwargs):
return

# log the arguments
logger.info(f"Prepare the payload from {sender} for {schedule} with arguments {kwargs}")
logger.info(f"Prepare the payload..")
logger.info(sender)
logger.info(schedule)
logger.info(user)
logger.info(kwargs)

# Prepare the payload
payload = {
Expand Down

0 comments on commit 243747d

Please sign in to comment.