log.warn: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 7: | Line 7: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
log.warn(message) | log.warn(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 WARN level. | Output a message to the {{code|macro-logger}} at the WARN level. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: log.warn("Go away or I shall taunt you a second time!")] | [h: log.warn("Go away or I shall taunt you a second time!")] | ||
</ | </syntaxhighlight> | ||
'''Returns:''' | '''Returns:''' | ||
Empty string to calling macro. Output is in log file. | Empty string to calling macro. Output is in log file. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
1975-03-14 08:59:39.211 [AWT-EventQueue-0] WARN macro-logger - Go away or I shall taunt you a second time! | 1975-03-14 08:59:39.211 [AWT-EventQueue-0] WARN macro-logger - Go away or I shall taunt you a second time! | ||
</ | </syntaxhighlight> | ||
|also= | |also= | ||
{{func|log.getLoggers}} {{func|log.setLevel}} | {{func|log.getLoggers}} {{func|log.setLevel}} |
Latest revision as of 23:59, 15 March 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!