Module: ActiveSupportBroadcastLogger::Prepend
Instance Method Summary
collapse
#record_one_broadcast_with_new_relic
Instance Method Details
#add(*args) ⇒ Object
9
10
11
|
# 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) ⇒ Object
13
14
15
|
# 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) ⇒ Object
25
26
27
|
# 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) ⇒ Object
29
30
31
|
# 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) ⇒ Object
17
18
19
|
# 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) ⇒ Object
33
34
35
|
# 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) ⇒ Object
21
22
23
|
# 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
|