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