Module: OnlinePayments::SDK::Logging::LoggingCapable

Included in:
Client, Communicator, Connection
Defined in:
lib/onlinepayments/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)


11
12
13
# File 'lib/onlinepayments/sdk/logging/logging_capable.rb', line 11

def disable_logging
  raise NotImplementedError
end

#enable_logging(communicator_logger) ⇒ Object

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/onlinepayments/sdk/logging/logging_capable.rb', line 7

def enable_logging(communicator_logger)
  raise NotImplementedError
end