module Rabbit::Logger

Public Class Methods

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