Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Log formats

Test log output
HRF: Human readable log format
XML log format
JUNIT log format

The Unit Test Framework supports several log formats:

Design

The following functionalities are supported by the logging framework:

[Note] Note

The logger indicates the default output stream in case the default should be used.

Defaults

By default the active log level threshold is set to

The active log level threshold and the output format can be configured at runtime during a test module invocation and at compile time from within a test module using the test log public interfaces. The behavior is logger specific though.


PrevUpHomeNext