LOGGINGLEVEL
Overview
The LOGGINGLEVEL
class defines script constants for application output logging levels.
Constants Summarized
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
Was this helpful?