Module: Worldline::Connect::SDK::Logging::LoggingCapable

Included in:
Client, Communication::Connection, Communicator
Defined in:
lib/worldline/connect/sdk/logging/logging_capable.rb

Overview

Abstract mixin module that allows loggers to be registered to an object.

Instance Method Summary collapse

Instance Method Details

#disable_loggingObject

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/worldline/connect/sdk/logging/logging_capable.rb', line 12

def disable_logging
  raise NotImplementedError
end

#enable_logging(communicator_logger) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/worldline/connect/sdk/logging/logging_capable.rb', line 8

def enable_logging(communicator_logger)
  raise NotImplementedError
end