From: Matt Amos Date: Mon, 3 Aug 2009 13:58:59 +0000 (+0000) Subject: Removed debugging statements accidentally committed. X-Git-Tag: live~6708^2~15 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/e1ad636f535465c9b578e84cda6302baec7975ca Removed debugging statements accidentally committed. --- diff --git a/app/models/request_token.rb b/app/models/request_token.rb index 1be8c6902..d66fe6ce1 100644 --- a/app/models/request_token.rb +++ b/app/models/request_token.rb @@ -9,11 +9,9 @@ class RequestToken < OauthToken def exchange! return false unless authorized? RequestToken.transaction do - logger.info("£££ In exchange!") params = { :user => user, :client_application => client_application } # copy the permissions from the authorised request token to the access token client_application.permissions.each { |p| - logger.info("£££ copying permission #{p} = #{read_attribute(p).inspect}") params[p] = read_attribute(p) }