Sha256: 410f8bc19412bd43c680e164962f6e5d2a3c1a9e93fe8c3009ef1ee800c5485f

Contents?: true

Size: 686 Bytes

Versions: 36

Compression:

Stored size: 686 Bytes

Contents

# Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

module GoodData
  # Dummy implementation of logger
  class NilLogger
    attr_accessor :level

    def initialize(*_args)
      @level = nil
    end

    def debug(*_args)
    end

    alias_method :info, :debug
    alias_method :warn, :debug
    alias_method :error, :debug
    alias_method :add, :debug

    def debug?
      false
    end

    alias_method :info?, :debug?
    alias_method :warn?, :debug?
    alias_method :error?, :debug?
    alias_method :fatal?, :debug?
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
gooddata-2.1.15-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.15 lib/gooddata/core/nil_logger.rb
gooddata-2.1.14-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.14 lib/gooddata/core/nil_logger.rb
gooddata-2.1.13-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.13 lib/gooddata/core/nil_logger.rb
gooddata-2.1.12-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.12 lib/gooddata/core/nil_logger.rb
gooddata-2.1.11-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.11 lib/gooddata/core/nil_logger.rb
gooddata-2.1.10-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.10 lib/gooddata/core/nil_logger.rb
gooddata-2.1.9-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.9 lib/gooddata/core/nil_logger.rb
gooddata-2.1.8-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.8 lib/gooddata/core/nil_logger.rb
gooddata-2.1.7-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.7 lib/gooddata/core/nil_logger.rb
gooddata-2.1.6-java lib/gooddata/core/nil_logger.rb
gooddata-2.1.6 lib/gooddata/core/nil_logger.rb