Class: Common::CloudboxLoggerMock
- Inherits:
-
CloudboxLogger
- Object
- Logger
- CloudboxLogger
- Common::CloudboxLoggerMock
- Defined in:
- lib/common/cloudbox_logger_mock.rb
Overview
The logger class mock
Instance Attribute Summary
Attributes inherited from CloudboxLogger
Instance Method Summary collapse
-
#debug(msg) ⇒ Object
Display debug message in a log file.
-
#error(msg) ⇒ Object
Display error message in a log file.
-
#fatal(msg) ⇒ Object
Display fatal message in a log file.
-
#info(msg) ⇒ Object
Display information message in a log file.
-
#initialize ⇒ CloudboxLoggerMock
constructor
Default constructor of the class.
-
#unknown(msg) ⇒ Object
Display unknown message in a log file.
-
#warn(msg) ⇒ Object
Display warning message in a log file.
Methods inherited from CloudboxLogger
#begin_execution, #begin_main_step, #end_execution, #end_main_step, #log_http, #logging_info
Constructor Details
#initialize ⇒ CloudboxLoggerMock
Note:
Overrides default constructor by passing CustomCommandOption to super().
Default constructor of the class.
16 17 |
# File 'lib/common/cloudbox_logger_mock.rb', line 16 def initialize end |
Instance Method Details
#debug(msg) ⇒ Object
Display debug message in a log file
40 41 |
# File 'lib/common/cloudbox_logger_mock.rb', line 40 def debug(msg) end |
#error(msg) ⇒ Object
Display error message in a log file
32 33 |
# File 'lib/common/cloudbox_logger_mock.rb', line 32 def error(msg) end |
#fatal(msg) ⇒ Object
Display fatal message in a log file
28 29 |
# File 'lib/common/cloudbox_logger_mock.rb', line 28 def fatal(msg) end |
#info(msg) ⇒ Object
Display information message in a log file
20 21 |
# File 'lib/common/cloudbox_logger_mock.rb', line 20 def info(msg) end |
#unknown(msg) ⇒ Object
Display unknown message in a log file
24 25 |
# File 'lib/common/cloudbox_logger_mock.rb', line 24 def unknown(msg) end |
#warn(msg) ⇒ Object
Display warning message in a log file
36 37 |
# File 'lib/common/cloudbox_logger_mock.rb', line 36 def warn(msg) end |