mvm_log_line — Send a log message to a client.
mvm_log_line( : : LoggerHandle, Level, Format, Args : )
Formats and sends a log message in Format. If required, the message will be HTML-escaped: For example, the character '<' will appear as '<' in the web page. Use mvm_log_raw to avoid escaping.
Level is the severity level of the log message. It should be one of the following:
'error'
'warn'
'info'
'debug'
Only log messages where this level is higher than the level specified during mvm_open_logger are handled.
The actual log message must be provided as string in Format.
Currently the parameter Args is not supported and must be empty.
LoggerHandle (input_control) lexicon(-array) → (handle)
Logger handle
Level (input_control) string → (string)
logging level
Default value: 'info'
List of values: 'debug', 'error', 'info', 'warn'
Format (input_control) string(-array) → (string)
Composite format string
Args (input_control) string(-array) → (string / integer / real)
Arguments to log using Format
mvm_log_raw,
mvm_gui_send_tuple
Foundation