From: Tom Hughes Date: Wed, 19 Aug 2009 08:04:42 +0000 (+0000) Subject: Remove debugging. X-Git-Tag: live~6708 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/1ce8368f64dda8c11243412229c882dbb7f4e528 Remove debugging. --- diff --git a/app/controllers/oauth_controller.rb b/app/controllers/oauth_controller.rb index 8af8af5e7..98075b8f8 100644 --- a/app/controllers/oauth_controller.rb +++ b/app/controllers/oauth_controller.rb @@ -12,13 +12,11 @@ class OauthController < ApplicationController def request_token @token = current_client_application.create_request_token - logger.info "in REQUEST TOKEN" if @token logger.info "request token params: #{params.inspect}" # request tokens indicate what permissions the client *wants*, not # necessarily the same as those which the user allows. current_client_application.permissions.each do |pref| - logger.info "PARAMS found #{pref}" @token.write_attribute(pref, true) end @token.save! @@ -45,7 +43,6 @@ class OauthController < ApplicationController any_auth = false @token.client_application.permissions.each do |pref| if params[pref] - logger.info "OAUTHORIZE PARAMS found #{pref}" @token.write_attribute(pref, true) any_auth ||= true else @@ -77,7 +74,6 @@ class OauthController < ApplicationController @token.invalidate! flash[:notice] = t('oauth.revoke.flash', :application => @token.client_application.name) end - logger.info "about to redirect" redirect_to :controller => 'oauth_clients', :action => 'index' end end