Method: ExceptionDog::Configuration#initialize
- Defined in:
- lib/exception_dog.rb
#initialize ⇒ Configuration
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/exception_dog.rb', line 26 def initialize self.source_type_name = 'my_apps' self.alert_type = 'error' self.environment = 'prod' self.test_mode = false self.agent_host = 'localhost' self.agent_port = 8125 self. = [] self.logger = Logger.new(STDOUT) self.ignore_exceptions = [] end |