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
16
17
18
|
# File 'lib/new_relic/agent/null_logger.rb', line 16
def method_missing(method, *args, &blk)
nil
end
|
Instance Method Details
#debug(*args) ⇒ Object
14
|
# File 'lib/new_relic/agent/null_logger.rb', line 14
def debug(*args); end
|
#error(*args) ⇒ Object
11
|
# File 'lib/new_relic/agent/null_logger.rb', line 11
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
13
|
# File 'lib/new_relic/agent/null_logger.rb', line 13
def info(*args); end
|
#warn(*args) ⇒ Object
12
|
# File 'lib/new_relic/agent/null_logger.rb', line 12
def warn(*args); end
|