Class: NewRelic::Agent::NullLogger
- Inherits:
-
Object
- Object
- NewRelic::Agent::NullLogger
show all
- Defined in:
- lib/new_relic/agent/null_logger.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &blk) ⇒ Object
20
21
22
|
# File 'lib/new_relic/agent/null_logger.rb', line 20
def method_missing(method, *args, &blk)
nil
end
|
Instance Method Details
#debug(*args) ⇒ Object
18
|
# File 'lib/new_relic/agent/null_logger.rb', line 18
def debug(*args); end
|
#error(*args) ⇒ Object
12
|
# File 'lib/new_relic/agent/null_logger.rb', line 12
def error(*args); end
|
#fatal(*args) ⇒ Object
10
|
# File 'lib/new_relic/agent/null_logger.rb', line 10
def fatal(*args); end
|
#info(*args) ⇒ Object
16
|
# File 'lib/new_relic/agent/null_logger.rb', line 16
def info(*args); end
|
#warn(*args) ⇒ Object
14
|
# File 'lib/new_relic/agent/null_logger.rb', line 14
def warn(*args); end
|