Class: Gelauto::NullLogger
- Inherits:
-
Logger
- Object
- Logger
- Gelauto::NullLogger
- Defined in:
- lib/gelauto/null_logger.rb
Instance Method Summary collapse
- #debug ⇒ Object
- #error ⇒ Object
- #fatal ⇒ Object
- #info ⇒ Object
-
#initialize ⇒ NullLogger
constructor
A new instance of NullLogger.
- #warn ⇒ Object
Constructor Details
#initialize ⇒ NullLogger
Returns a new instance of NullLogger.
5 6 7 |
# File 'lib/gelauto/null_logger.rb', line 5 def initialize(*) super(File.open(File::NULL, 'w')) end |
Instance Method Details
#debug ⇒ Object
9 |
# File 'lib/gelauto/null_logger.rb', line 9 def debug(*); end |
#error ⇒ Object
12 |
# File 'lib/gelauto/null_logger.rb', line 12 def error(*); end |
#fatal ⇒ Object
13 |
# File 'lib/gelauto/null_logger.rb', line 13 def fatal(*); end |
#info ⇒ Object
10 |
# File 'lib/gelauto/null_logger.rb', line 10 def info(*); end |
#warn ⇒ Object
11 |
# File 'lib/gelauto/null_logger.rb', line 11 def warn(*); end |