From ef4541b6ebe6254affb4203fc70d6c1b2ccf39d4 Mon Sep 17 00:00:00 2001 From: Sergio Gomes Date: Tue, 29 Oct 2013 13:17:39 +0000 Subject: [PATCH] Removing service logger. Incorrect implementation; loggers are global instead, and set in a Google::APIClient class method --- lib/google/api_client/service.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/google/api_client/service.rb b/lib/google/api_client/service.rb index b2d7042a1..a91ab652e 100755 --- a/lib/google/api_client/service.rb +++ b/lib/google/api_client/service.rb @@ -110,7 +110,6 @@ module Google end @client = Google::APIClient.new(params) - @client.logger = options[:logger] if options.include? :logger @connection = options[:connection] || @client.connection @@ -147,13 +146,6 @@ module Google generate_call_stubs(self, @api) end - ## - # Logger for the Service. - # - # @return [Logger] - # The logger instance. - def_delegators :@client, :logger, :logger= - ## # Returns the authorization mechanism used by the service. #