LOGGINGLEVEL

Overview

Script constants for application.output logging levels.

Constants Summarized

TypeNameSummary

Logging level.

Logging level.

Logging level.

Logging level.

Logging level.

Constants Detailed

DEBUG

Logging level.

Type Number

Sample

application.output('my message',LOGGINGLEVEL.DEBUG)

ERROR

Logging level.

Type Number

Sample

application.output('my message',LOGGINGLEVEL.ERROR)

FATAL

Logging level. This level will for the most part be mapped on ERROR, because of java loggign api's

Type Number

Sample

application.output('my message',LOGGINGLEVEL.FATAL)

INFO

Logging level.

Type Number

Sample

application.output('my message',LOGGINGLEVEL.INFO)

WARNING

Logging level.

Type Number

Sample

application.output('my message',LOGGINGLEVEL.WARNING)

Last updated