Skip to end of banner
Go to start of banner

Error Logging Guide

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

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 want to get informed of the error logging events, pass your implementation of the ErrorLoggerListener interface to GiniCapture.Builder:

GiniCapture.newInstance()
    .setCustomErrorLoggerListener(new MyErrorLoggerListener())
    .build();

  • No labels