log.debug: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
|version=1.5.2
|version=1.5.2
|description=
|description=
Writes a message to the log at the DEBUG logging level.
Writes a message to the log at the DEBUG logging level. Use {{func|log.setLevel}} to set the appropriate level for the {{code|macro-logger}}.


|usage=
|usage=
Line 26: Line 26:
</source>
</source>
|also=
|also=
[[log.getLoggers|log.getLoggers]] [[log.setLevel|log.setLevel]]
{{func|log.getLoggers}} {{func|log.setLevel}}


}}
}}
[[Category:Log Function]]
[[Category:Log Function]]

Revision as of 21:41, 20 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. 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

See Also