Class: Tracker::LoggerTracker
- Inherits:
-
Base
- Object
- Base
- Tracker::LoggerTracker
show all
- Defined in:
- lib/liquid/tracker/logger_tracker.rb
Instance Attribute Summary
Attributes inherited from Base
#dimensions
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #with_topic
Constructor Details
This class inherits a constructor from Tracker::Base
Instance Method Details
#down? ⇒ Boolean
10
11
12
|
# File 'lib/liquid/tracker/logger_tracker.rb', line 10
def down?
false
end
|
#event(topic, data) ⇒ Object
6
7
8
|
# File 'lib/liquid/tracker/logger_tracker.rb', line 6
def event(topic, data)
$log.info("tracker:event:#{topic} #{data}")
end
|
#shutdown ⇒ Object
14
15
|
# File 'lib/liquid/tracker/logger_tracker.rb', line 14
def shutdown
end
|