log.error: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 26: Line 26:
</source>
</source>
|also=
|also=
{{func|log.getLoggers}}  {{func||log.setLevel}}
{{func|log.getLoggers}}  {{func|log.setLevel}}


}}
}}
[[Category:Log Function]]
[[Category:Log Function]]

Revision as of 21:43, 20 April 2019

log.error() 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 ERROR logging level. Use log.setLevel() to set the appropriate level for the macro-logger.

Usage

log.error(message)

Parameters

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

Example

Output a message to the macro-logger at the ERROR level.
[h: log.error(getPlayerName() + " chose poorly")]

Returns:

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

1989-05-24 08:13:32.911 [AWT-EventQueue-0] ERROR macro-logger - Bob chose poorly.

See Also