module NewRelic::Agent::Instrumentation::ActiveSupportBroadcastLogger::Prepend
Public Instance Methods
Source
# File lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb, line 9 def add(*args) record_one_broadcast_with_new_relic(*args) { super } end
Calls superclass method
Source
# File lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb, line 13 def debug(*args) record_one_broadcast_with_new_relic(*args) { super } end
Calls superclass method
Source
# File lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb, line 25 def error(*args) record_one_broadcast_with_new_relic(*args) { super } end
Calls superclass method
Source
# File lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb, line 29 def fatal(*args) record_one_broadcast_with_new_relic(*args) { super } end
Calls superclass method
Source
# File lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb, line 17 def info(*args) record_one_broadcast_with_new_relic(*args) { super } end
Calls superclass method
Source
# File lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb, line 33 def unknown(*args) record_one_broadcast_with_new_relic(*args) { super } end
Calls superclass method
Source
# File lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb, line 21 def warn(*args) record_one_broadcast_with_new_relic(*args) { super } end
Calls superclass method