log.trace: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(Created page with "{{MacroFunction |name=log.trace |trusted=true |version=1.5.7 |description= Writes a message to the log file at the TRACE logging level. Use {{func|log.setLevel}} to set the ap...")
 
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 7: Line 7:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
log.trace(message)
log.trace(message)
</source>
</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 TRACE level.
Output a message to the {{code|macro-logger}} at the TRACE level.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: log.trace("Your mother was a hamster and your father smelt of elderberries!")]
[h: log.trace("Your mother was a hamster and your father smelt of elderberries!")]
</source>
</syntaxhighlight>
'''Returns:'''
'''Returns:'''


Empty string to calling macro.  Output is in log file.
Empty string to calling macro.  Output is in log file.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
1975-03-14 08:59:39.211 [AWT-EventQueue-0] TRACE  macro-logger - Your mother was a hamster and your father smelt of elderberries!
1975-03-14 08:59:39.211 [AWT-EventQueue-0] TRACE  macro-logger - Your mother was a hamster and your father smelt of elderberries!


</source>
</syntaxhighlight>
|also=
|also=
{{func|log.getLoggers}}  {{func|log.setLevel}}
{{func|log.getLoggers}}  {{func|log.setLevel}}

Latest revision as of 20:10, 15 March 2023

log.trace() Function

 Note: This function can only be used in a Trusted Macro

Introduced in version 1.5.7
Writes a message to the log file at the TRACE logging level. Use log.setLevel() to set the appropriate level for the macro-logger.

Usage

log.trace(message)

Parameters

  • message - A string containing the message to be logged.

Example

Output a message to the macro-logger at the TRACE level.
[h: log.trace("Your mother was a hamster and your father smelt of elderberries!")]

Returns:

Empty string to calling macro. Output is in log file.

1975-03-14 08:59:39.211 [AWT-EventQueue-0] TRACE  macro-logger - Your mother was a hamster and your father smelt of elderberries!

See Also