log.debug: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(One intermediate revision by one other user not shown) | |||
Line 7: | Line 7: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
log.debug(message) | log.debug(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 DEBUG level. | Output a message to the {{code|macro-logger}} at the DEBUG level. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: log.debug("Switched to map " + getCurrentMapName())] | [h: log.debug("Switched to map " + getCurrentMapName())] | ||
</ | </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> | ||
1987-09-25 08:52:18.853 [AWT-EventQueue-0] DEBUG macro-logger - Switched to map Pit of Despair | 1987-09-25 08:52:18.853 [AWT-EventQueue-0] DEBUG macro-logger - Switched to map Pit of Despair | ||
</ | </syntaxhighlight> | ||
|also= | |also= | ||
{{func|log.getLoggers}} {{func|log.setLevel}} | {{func|log.getLoggers}} {{func|log.setLevel}} |
Latest revision as of 20:12, 15 March 2023
log.debug() 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 DEBUG logging level. Use log.setLevel() to set the appropriate level for the
macro-logger
.Usage
log.debug(message)
Parameters
message
- A string containing the message to be logged.
Example
Output a message to the
macro-logger
at the DEBUG level.
[h: log.debug("Switched to map " + getCurrentMapName())]
Returns:
Empty string to calling macro. Output is in log file.
1987-09-25 08:52:18.853 [AWT-EventQueue-0] DEBUG macro-logger - Switched to map Pit of Despair