The SDK logs errors to Gini Bank API when the default networking implementation is used. You can disable the default error logging by passing false
to GiniCapture.Builder.setGiniErrorLoggerIsOn()
. If you would like to get informed of the error logging events, you can pass your implementation of the ErrorLoggerListener
interface to GiniCapture.Builder
:
GiniCapture.newInstance() .setCustomErrorLoggerListener(new MyErrorLoggerListener()) .build();