Method: LogErrorHandler::Tracker#initialize
- Defined in:
- lib/log_error_handler.rb
#initialize(opts = {}) ⇒ Tracker
Returns a new instance of Tracker.
25 26 27 28 29 30 |
# File 'lib/log_error_handler.rb', line 25 def initialize(opts = {}) @tracking_logs = {} @options = DEFAULT_OPTIONS.merge(opts) @out = OutFactory.retrieve(@options) @mutex = Mutex.new end |