Log Functions

From AgileApps Support Wiki
(Redirected from Logger.info)

These methods are defined in the Logger class. Going from the lowest level to the highest:

This is the default display level in the Debug Log. This level is appropriate for most application debugging, as logged messages from here through fatal are displayed, by default.

where:

  • message is the message to put into the debug log
  • msgType is an arbitrary string that specifies a message type, or category
    (Put anything there you like. For example, the class name. Use it for searching and filtering the debug log.)

Considerations:

  • Log messages are plain text. For a linebreak, use "\n".