class TingYun::Logger::NullLogger

Public Instance Methods

debug(*args) click to toggle source
# File lib/ting_yun/logger/null_logger.rb, line 22
def debug(*args)
  ;
end
error(*args) click to toggle source
# File lib/ting_yun/logger/null_logger.rb, line 10
def error(*args)
  ;
end
fatal(*args) click to toggle source
# File lib/ting_yun/logger/null_logger.rb, line 6
def fatal(*args)
  ;
end
info(*args) click to toggle source
# File lib/ting_yun/logger/null_logger.rb, line 18
def info(*args)
  ;
end
method_missing(method, *args, &blk) click to toggle source
# File lib/ting_yun/logger/null_logger.rb, line 26
def method_missing(method, *args, &blk)
  nil
end
warn(*args) click to toggle source
# File lib/ting_yun/logger/null_logger.rb, line 14
def warn(*args)
  ;
end