Annotation Type LogLevel

Indicates the threshold level for logging in Evergage.setLogLevel(int).

1@Retention(value=SOURCE)
2public @interface LogLevel

The 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:

  • OFF
  • ERROR
  • WARN
  • INFO
  • DEBUG
  • ALL

Fields 

OFF 

1public static final int OFF

Disables all logging.

ERROR 

1public static final int ERROR

Indicates that an operation failed.

WARN 

1public static final int WARN

Indicates that something abnormal happened but the overall operation did not necessarily fail.

INFO 

1public static final int INFO

Provides detail about most operations.

DEBUG 

1public static final int DEBUG

Provides a high level of detail primarily intended for Marketing Cloud Personalization developers.

ALL 

1public static final int ALL

Enables all logging.

See Also