log.error: Difference between revisions
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 |
||
(8 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
|version=1.5.2 | |version=1.5.2 | ||
|description= | |description= | ||
Writes a message to the log at the ERROR logging level. | Writes a message to the log file at the ERROR logging level. Use {{func|log.setLevel}} to set the appropriate level for the {{code|macro-logger}}. | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
log.error(message) | log.error(message) | ||
</ | </syntaxhighlight> | ||
'''Parameters''' | '''Parameters''' | ||
{{param|message|A string containing the message to be logged.}} | {{param|message|A string containing the message to be logged.}} | ||
Line 16: | Line 16: | ||
Output a message to the {{code|macro-logger}} at the ERROR level. | Output a message to the {{code|macro-logger}} at the ERROR level. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: log.error(getPlayerName() + " chose poorly")] | [h: log.error(getPlayerName() + " chose poorly")] | ||
</ | </syntaxhighlight> | ||
Returns: | '''Returns:''' | ||
Empty string to | |||
< | Empty string to calling macro. Output is to log file. | ||
08:13:32.911 | <syntaxhighlight lang="mtmacro" line> | ||
</ | 1989-05-24 08:13:32.911 [AWT-EventQueue-0] ERROR macro-logger - Bob chose poorly. | ||
</syntaxhighlight> | |||
|also= | |also= | ||
{{func|log.getLoggers}} {{func|log.setLevel}} | |||
}} | }} | ||
[[Category:Log Function]] | [[Category:Log Function]] |
Latest revision as of 20:12, 15 March 2023
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.