logLevel and commandWindowLevel

The options help you to define the log level and to get more flexibility when debugging the evaluation. They can be used only in the start.m. The "LogLevel" option defines the level of information in the log file. The "commandWindowLevel" option defines the level of information in the command window.

The following levels are available:

'ALL', 'TRACE', 'DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL', 'OFF'

  • ALL / 0: all messages printed unfiltered

  • TRACE / 1: detailed debug output

  • comments DEBUG / 2: general debug output (finding errors)

  • INFO / 3: general information (program start, program stop, processing seconds etc.)

  • WARN / 4: unexpected situation occurred

  • ERROR / 5: error where the exception was caught and the processing was alternatively continued

  • FATAL / 7: logging is disabled

Examples:

rb.settings.logLevel = 'OFF';

rb.settings.commandWindowLevel = '4';