Package hw
Class Logger

Public Method e

static void e(String msg)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Description
msg message to the console

The e method is used to log error information only. The parameter msg provides an additional and user defined logging message which will be written to the iLCD Manager XEJoC Manager console window.

Note

  • It's possible to switch off this message level with the static variable LOG_LEVEL.
  • No error messages will be written to the console window if the value of the LOG_LEVEL variable is equal to the value of the final static variable NO_LOGGING.
  • Example

       Logger.LOG_LEVEL = Logger.ERROR;
       Logger.e("this is a error information");

    The first line ensures the logger error level. The following line writes the defined message to the console window.