Sha256: 57fa2e77ae4c570c50605ab615dc9e3d3ae4c7c333ec07aaa0b45580f0471197

Contents?: true

Size: 1.32 KB

Versions: 10

Compression:

Stored size: 1.32 KB

Contents

# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'google/apis/version'
require 'logger'

module Google
  module Apis
    ROOT = File.expand_path('..', File.dirname(__dir__))

    # @!attribute [rw] logger
    # @return [Logger] The logger.
    def self.logger
      @logger ||= rails_logger || default_logger
    end

    class << self
      attr_writer :logger
    end

    private

    # Create and configure a logger
    # @return [Logger]
    def self.default_logger
      logger = Logger.new($stdout)
      logger.level = Logger::WARN
      logger
    end

    # Check to see if client is being used in a Rails environment and ge the logger if present
    # @return [Logger]
    def self.rails_logger
      ::Rails.logger if defined?(::Rails) && ::Rails.respond_to?(:logger) && ::Rails.logger
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
google-api-client-0.9.4 lib/google/apis.rb
google-api-client-0.9.3 lib/google/apis.rb
google-api-client-0.9.2 lib/google/apis.rb
google-api-client-0.9.1 lib/google/apis.rb
google-api-client-0.9 lib/google/apis.rb
google-api-client-0.9.pre5 lib/google/apis.rb
google-api-client-0.9.pre4 lib/google/apis.rb
google-api-client-0.9.pre3 lib/google/apis.rb
google-api-client-0.9.pre2 lib/google/apis.rb
google-api-client-0.9.pre1 lib/google/apis.rb