LoggingLevel

Inheritance: java.lang.Object, java.lang.Enum

public enum LoggingLevel extends Enum<LoggingLevel>

Fields

FieldDescription
DebugAll logs will be displayed.
WarningSome not critical points and all errors will be displayed.
ErrorOnly errors will be displayed.
NoneDisable logging (default).

Methods

MethodDescription
values()
valueOf(String name)

Debug

public static final LoggingLevel Debug

All logs will be displayed.

Warning

public static final LoggingLevel Warning

Some not critical points and all errors will be displayed.

Error

public static final LoggingLevel Error

Only errors will be displayed.

None

public static final LoggingLevel None

Disable logging (default).

values()

public static LoggingLevel[] values()

Returns: com.aspose.ocr.LoggingLevel[]

valueOf(String name)

public static LoggingLevel valueOf(String name)

Parameters:

ParameterTypeDescription
namejava.lang.String

Returns: LoggingLevel