module Aquarium::Utils::DefaultLogger
DefaultLogger
holds the Aquarium-wide “default” Ruby standard library logger. Individual objects may chose to create their own loggers.
Constants
- DEFAULT_SEVERITY_LEVEL
Public Class Methods
logger()
click to toggle source
# File lib/aquarium/utils/default_logger.rb 13 def self.logger 14 @@default_logger 15 end
logger=(logger)
click to toggle source
# File lib/aquarium/utils/default_logger.rb 17 def self.logger= logger 18 @@default_logger = logger 19 end