MPS 2019.1 Help

Logging

The jetbrains.mps.baselanguage.logging language contains statements for writing arbitrary information into the MPS log as well as to the Messages tool view panel. The LogLowLevelStatement concept (aka "log error ...") is used for logging using the system logger, while MsgStatement (aka "message error...") is used for logging into the Messages tool window.

log6

The Messages tool window is located at the bottom of the screen:

Messages Tool Window

The MPS log file can be quickly navigated to using the menu:

Locate Logs

The language supports different severities of log messages:

  • trace

  • info

  • debug

  • warn

  • error

  • fatal

Whenever you want to insert a log statement into code, start by typing either "log" or "message" followed by the desired severity:

log1

Upon completion the log statement with an empty message will be inserted.

log2

The severity level can always be changed:

log3

The log statement also supports exceptions to be specified:

log4

MsgStatement contains an additional parameter to specify the project:

log5

When multiple projects are open in MPS at the same time, each project gets its own MPS windows and thus also its own Messages view. The project parameter is used to output the log message into the Messages window of the right project. If you leave the parameter empty, the message will be logged into Messages tool views of all open projects.

Last modified: 5 July 2019