module NewRelic::Agent::Instrumentation::ActiveSupportBroadcastLogger::Prepend
Public Instance Methods
add(*args)
click to toggle source
Calls superclass method
# 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
debug(*args)
click to toggle source
Calls superclass method
# 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
error(*args)
click to toggle source
Calls superclass method
# 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
fatal(*args)
click to toggle source
Calls superclass method
# 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
info(*args)
click to toggle source
Calls superclass method
# 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
unknown(*args)
click to toggle source
Calls superclass method
# 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
warn(*args)
click to toggle source
Calls superclass method
# 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