log.info

From RPTools Wiki
Revision as of 15:22, 19 April 2019 by Phergus (talk | contribs) (Created page with "{{MacroFunction |name=log.info |trusted=true |version=1.5.2 |description= Writes a message to the log at the INFO logging level. |usage= <source lang="mtmacro" line> log.info...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

log.info() 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 INFO logging level.

Usage

log.info(message)

Parameters

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

Example

Output a message to the macro-logger at the INFO level.
[h: log.info("There's no place like home.")]

Returns:

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

1939-08-25 09:19:22.844 [AWT-EventQueue-0] INFO  macro-logger - There's no place like home.

See Also