Package com.blockchyp.client
Class SystemOutPaymentLogger
java.lang.Object
com.blockchyp.client.SystemOutPaymentLogger
- All Implemented Interfaces:
PaymentLogger
Very minimal implementation of PaymentLogger. We recommend you provide your
own implementation that hooks into your existing logging framework.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidLogs the message at the debug log level.voidLogs the message and throwable at the debug log level.voidLogs the message at the error log level.voidLogs the message and throwable at the error log level.voidLogs the message at the fatal log level.voidLogs the message and throwable at the fatal log level.voidLogs the message at the info log level.voidLogs the message and throwable at the info log level.
-
Constructor Details
-
SystemOutPaymentLogger
public SystemOutPaymentLogger()
-
-
Method Details
-
debug
Description copied from interface:PaymentLoggerLogs the message at the debug log level.- Specified by:
debugin interfacePaymentLogger- Parameters:
message- the message to be logged.
-
debug
Description copied from interface:PaymentLoggerLogs the message and throwable at the debug log level.- Specified by:
debugin interfacePaymentLogger- Parameters:
message- the message to be logged.t- a throwable for which the stack trace should be logged.
-
error
Description copied from interface:PaymentLoggerLogs the message at the error log level.- Specified by:
errorin interfacePaymentLogger- Parameters:
message- the message to be logged.
-
error
Description copied from interface:PaymentLoggerLogs the message and throwable at the error log level.- Specified by:
errorin interfacePaymentLogger- Parameters:
message- the message to be logged.t- a throwable for which the stack trace should be logged.
-
fatal
Description copied from interface:PaymentLoggerLogs the message at the fatal log level.- Specified by:
fatalin interfacePaymentLogger- Parameters:
message- the message to be logged.
-
fatal
Description copied from interface:PaymentLoggerLogs the message and throwable at the fatal log level.- Specified by:
fatalin interfacePaymentLogger- Parameters:
message- the message to be logged.t- a throwable for which the stack trace should be logged.
-
info
Description copied from interface:PaymentLoggerLogs the message at the info log level.- Specified by:
infoin interfacePaymentLogger- Parameters:
message- the message to be logged.
-
info
Description copied from interface:PaymentLoggerLogs the message and throwable at the info log level.- Specified by:
infoin interfacePaymentLogger- Parameters:
message- the message to be logged.t- a throwable for which the stack trace should be logged.
-