Package hw
Class Logger

Public Method w

static void w(String msg)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Description
msg message to the console

The w method is used to log warning 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 warn 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 ERROR, or NO_LOGGING.
  • Example

       Logger.LOG_LEVEL = Logger.WARN;
       Logger.w("this is a warning information");

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