The logging (verbosity) level is set with the logLevel parameter in the test configuration file. For example:
# Verobosity level logLevel: debugThe log levels available are: silent, brief, normal, verbose, veryverbose, and debug (in order of from least verbose (silent) to most verbose (debug)). The default is normal. Level silent only prints error messages.
It is also possible to define a different logging level for console output with the logConsoleLevel parameter. For example:
# Log level for file logLevel: debug # Log level for console logConsoleLevel: briefIn this example all messages are saved to a file but only brief logging is printed on console. The console logging level must not be more verbose than file logging level.
The file where to save the log can be selected with the logFile parameter:
# File where to log logFile: session.logThe file name is relative to test directory unless absolute path is used. In the future, logging may be possible to automatically to use a session ID based log file name.