Newer Version Available
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Indicates the threshold level for logging in Evergage.setLogLevel(int).
1@Retention(value=SOURCE)
2public @interface LogLevelThe initial default is WARN for debug/debuggable builds, and OFF otherwise.
Log messages at the threshold level and lower will be logged. For instance, if the threshold is WARN, messages at level WARN or ERROR will be logged.
Levels:
OFFERRORWARNINFODEBUGALL1public static final int OFFDisables all logging.
1public static final int ERRORIndicates that an operation failed.
1public static final int WARNIndicates that something abnormal happened but the overall operation did not necessarily fail.
1public static final int INFOProvides detail about most operations.
1public static final int DEBUGProvides a high level of detail primarily intended for Marketing Cloud Personalization developers.
1public static final int ALLEnables all logging.
Newer Version Available