52.11 Transport Debugging

It is recommended that you read 52.10 Advanced Concepts before proceeding with this section.

The Real-Time WAN Transport operation can be debugged by setting the Connext verbosity to LOCAL for the COMMUNICATION category:

<participant_factory_qos>
    <logging>
        <category>COMMUNICATION</category>
        <verbosity>LOCAL</verbosity>
    </logging>
</participant_factory_qos>

Or programmatically, shown here in modern C++ (other languages are similar):

Logger::instance().verbosity_by_category(LogCategory::COMMUNICATION, Verbosity::STATUS_LOCAL);

See the following sections: