module Rabbit::Logger

Public Class Methods

default() click to toggle source
# File lib/rabbit/logger.rb, line 15
def default
  if Utils.support_console_output? or !Logger.const_defined?(:GUI)
    Logger::STDERR.new
  else
    Logger::GUI.new
  end
end
types() click to toggle source
# File lib/rabbit/logger.rb, line 11
def types
  collect_classes_under_module(self)
end