log.debug: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{MacroFunction |name=log.debug |trusted=true |version=1.5.2 |description= Writes a message to the log at the DEBUG logging level. |usage= <source lang="mtmacro" line> log.de...") |
No edit summary |
||
Line 23: | Line 23: | ||
Empty string to calling macro. Output is in log file. | Empty string to calling macro. Output is in log file. | ||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
1987-09-25 08:52:18.853 [AWT-EventQueue-0] DEBUG macro-logger - Switched to map Pit of Despair | |||
</source> | </source> | ||
|also= | |also= |
Revision as of 15:27, 19 April 2019
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.
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