Skip to content

Log

Log of the SDK's operation.

Overview

This object records the working logs of SDK.

Properties

timeStamp

The date of the log. For example, it is expressed in the form "2022/01/31_20:53:21:790".

Declaration

public final String timeStamp;

level

Indicator of seriousness of the log. See Level.

Declaration

public final Level level;

errorDescription

Description of the log.

Declaration

public final String errorDescription;

errorCode

Error code. This value is as same as PrintErrorCode. Must be typecast as needed.

Declaration

public final int errorCode;

whereCause

Which API of the SDK the event occurred on.

Declaration

public final String whereCause;

identificationCode

Unique ID of the log.

Declaration

public final String identificationCode;

Types

Level

Name Description
Notice No problem with operation.
Warning Problem occurred, but operation completed.
Error Serious problems occurred and could not operate properly.

Declaration

public enum Level {
    Notice(1),
    Warning(2),
    Error(3),
}