Sha256: 5e9c7449dc68d94f8852a66352a8f55a10a67d131429c0709ed37db71b094554
Contents?: true
Size: 676 Bytes
Versions: 30
Compression:
Stored size: 676 Bytes
Contents
# encoding: UTF-8 # # 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 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
30 entries across 30 versions & 1 rubygems