Skip to main content
Version: 3.0.0

Logging

Logging can be configured via loggingConfiguration in the config file.

Defaults

  • Console logging defaults to INFO with a simple %(message)s format.
  • File logging defaults to DEBUG in testbench-cli-reporter.log.

Example

{
"configuration": [],
"loggingConfiguration": {
"console": {
"logLevel": "INFO",
"logFormat": "%(message)s"
},
"file": {
"logLevel": "DEBUG",
"fileName": "testbench-cli-reporter.log"
}
}
}