Log Functions

From AgileApps Support Wiki
Revision as of 02:25, 12 November 2014 by imported>Aeric (Created page with "These methods are defined in the [{{DOCHOST}}/javadocs/com/platform/api/Logger.html Logger] class. Going from the lowest level to the highest: :* [{{DOCHOST}}/javadocs/com/platf...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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".