log.warn: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page log.warn to Log.warn without leaving a redirect: Converting page title to first-letter uppercase)
m (Conversion script moved page Log.warn to log.warn: Converting page titles to lowercase)
(No difference)

Revision as of 23:35, 9 February 2023

log.warn() Function

 Note: This function can only be used in a Trusted Macro

Introduced in version 1.5.2
Writes a message to the log file at the WARN logging level. Use log.setLevel() to set the appropriate level for the macro-logger.

Usage

log.warn(message)

Parameters

  • message - A string containing the message to be logged.

Example

Output a message to the macro-logger at the WARN level.
[h: log.warn("Go away or I shall taunt you a second time!")]

Returns:

Empty string to calling macro. Output is in log file.

1975-03-14 08:59:39.211 [AWT-EventQueue-0] WARN  macro-logger - Go away or I shall taunt you a second time!

See Also