diff --git a/app/jobs/agent_bots/webhook_job.rb b/app/jobs/agent_bots/webhook_job.rb index 2786ce70e..d752034a7 100644 --- a/app/jobs/agent_bots/webhook_job.rb +++ b/app/jobs/agent_bots/webhook_job.rb @@ -8,7 +8,7 @@ class AgentBots::WebhookJob < WebhookJob def perform(url, payload, webhook_type = :agent_bot_webhook) super(url, payload, webhook_type) rescue RestClient::TooManyRequests, RestClient::InternalServerError => e - Rails.logger.warn("[AgentBots::WebhookJob] attempt #{executions} failed #{e.class.name}") + Rails.logger.warn("[AgentBots::WebhookJob] attempt #{executions} failed #{e.class.name} payload=#{payload.to_json}") raise end end