OnixS Thomson Reuters Matching API (MAPI) Market Data Handler for C++  1.6.0.0
Controlling Handler Logging

Controling Logging in the Handler

The Handler logs an important aspects of its execution into the directory specified by the OnixS::ThomsonReuters::MarketData::HandlerSettings::logDirectory member value. Logging includes network data received and processed by the Handler and, of course, errors occurred at execution time.

Since Handler outputs logging data into regular files, this affects its performance and sometimes requires significant system resources like space on hard drive. Handler exposes several parameters which allows to suppress certain kind of logging data and thus reduce load to the filesystem as well as to increase general performance.

Following table describes logging-related parameters exposed by the OnixS::ThomsonReuters::MarketData::HandlerSettings structure:

Settings Member Default value Description
logLevel OnixS::ThomsonReuters::MarketData::LogLevel::Debug Specifies whether Handler must output informational messages about its state as well as which kind of information must be put into the log. For more information, please, take a look at description of OnixS::ThomsonReuters::MarketData::LogLevel enumeration entries.
logSettings OnixS::ThomsonReuters::MarketData::LogSettings::Default If logging is activated, this member specifies which additional data must be put into the log. For more information, please, take a look at description of OnixS::ThomsonReuters::MarketData::LogSettings enumeration entries.

Activating Logging Example

Following example demostrates how to enable logging in the Handler:

HandlerSetting settings;
// Specify log verbosity.
settings.logLevel = LogLevel::Debug;
// Don't forget to define folder where logs to be stored.
settings.logDirectory = "./logs";
// In addition to standard information, decoded messages will be logged.
settings.logSettings = LogSettings::DumpProtocolText;