From 80d25c219b8a0b39f9365faf2257f26ed78d230c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Volker=20Z=C3=B6pfel?= Date: Thu, 28 Nov 2013 12:26:25 +0100 Subject: [PATCH] bugfix file_storage --- lib/google/api_client/auth/file_storage.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/google/api_client/auth/file_storage.rb b/lib/google/api_client/auth/file_storage.rb index 771ebac7c..f6c41289b 100644 --- a/lib/google/api_client/auth/file_storage.rb +++ b/lib/google/api_client/auth/file_storage.rb @@ -34,7 +34,7 @@ module Google :path def initialize(path) - Google::ApiClient.logger("DEPRECATED: Please use Storage Class instead.") + Google::APIClient.logger("DEPRECATED: Please use Storage Class instead.") @path = path store = Google::APIClient::FileStore.new(@path) @storage = Google::APIClient::Storage.new(store) @@ -42,7 +42,7 @@ module Google end def load_credentials - Google::ApiClient.logger("DEPRECATED: Please use Storage Class instead.") + Google::APIClient.logger("DEPRECATED: Please use Storage Class instead.") storage.authorize end