log.error: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(Created page with "{{MacroFunction |name=log.error |trusted=true |version=1.5.2 |description= Writes a message to the log at the ERROR logging level. |usage= <source lang="mtmacro" line> log.er...")
 
No edit summary
Line 22: Line 22:
Empty string to chat.
Empty string to chat.
<source lang="mtmacro" line>
<source lang="mtmacro" line>
08:13:32.911 (LogFunctions.java:132) [AWT-EventQueue-0] ERROR macro-logger - Bob chose poorly.
2019-04-19 08:13:32.911 [AWT-EventQueue-0] ERROR macro-logger - Bob chose poorly.
</source>
</source>
|also=
|also=

Revision as of 14:19, 19 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 at the ERROR logging level.

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

2019-04-19 08:13:32.911 [AWT-EventQueue-0] ERROR macro-logger - Bob chose poorly.

See Also