Sha256: 792cd5a7772ebfc870fda6287836a9e1fe320380be1594b4fe3acc02851183a6

Contents?: true

Size: 505 Bytes

Versions: 24

Compression:

Stored size: 505 Bytes

Contents

# encoding: UTF-8
#
# Copyright (c) 2010-2015 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
  end
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
gooddata-0.6.30 lib/gooddata/core/nil_logger.rb
gooddata-0.6.29 lib/gooddata/core/nil_logger.rb
gooddata-0.6.28 lib/gooddata/core/nil_logger.rb
gooddata-0.6.27 lib/gooddata/core/nil_logger.rb