Class: Common::CloudboxLoggerMock

Inherits:
CloudboxLogger show all
Defined in:
lib/common/cloudbox_logger_mock.rb

Overview

The logger class mock

Instance Attribute Summary

Attributes inherited from CloudboxLogger

#filename, #path

Instance Method Summary collapse

Methods inherited from CloudboxLogger

#begin_execution, #begin_main_step, #end_execution, #end_main_step, #log_http, #logging_info

Constructor Details

#initializeCloudboxLoggerMock

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