commit: 68eed8c61fd4dd5d7f5ed119848ccb4694140be5
parent: 87b618ab02d5265e47bd3455a41c5c31d77905a5
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Mon, 10 Oct 2016 18:16:39 +0200
Stop logging incoming Atom
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/app/controllers/api/subscriptions_controller.rb b/app/controllers/api/subscriptions_controller.rb
@@ -15,8 +15,6 @@ class Api::SubscriptionsController < ApiController
body = request.body.read
subscription = @account.subscription(api_subscription_url(@account.id))
- Rails.logger.debug body
-
if subscription.verify(body, request.headers['HTTP_X_HUB_SIGNATURE'])
ProcessFeedService.new.call(body, @account)
head 201