|
C++ Actor Framework 0.18
|
Combines various logging-related flags and parameters into a bitfield. More...
#include <logger.hpp>
Public Attributes | |
| unsigned | verbosity: 4 |
Stores max(file_verbosity, console_verbosity). | |
| unsigned | file_verbosity: 4 |
| Configures the verbosity for file output. | |
| unsigned | console_verbosity: 4 |
| Configures the verbosity for console output. | |
| bool | inline_output: 1 |
| Configures whether the logger immediately writes its output in the calling thread, bypassing its queue. | |
| bool | console_coloring: 1 |
| Configures whether the logger generates colored output. | |
Combines various logging-related flags and parameters into a bitfield.
| bool caf::logger::config::inline_output |
Configures whether the logger immediately writes its output in the calling thread, bypassing its queue.
Use this option only in single-threaded test environments.