\brief Implementation of the nvinfer1::ILogger::log() virtual method Note samples should not be calling this function directly; it will eventually go away once we eliminate the inheritance from nvinfer1::ILogger
| 310 | //! inheritance from nvinfer1::ILogger |
| 311 | //! |
| 312 | void log(Severity severity, const char* msg) noexcept override |
| 313 | { |
| 314 | LogStreamConsumer(mReportableSeverity, severity) << "[TRT] " << std::string(msg) << std::endl; |
| 315 | } |
| 316 | |
| 317 | //! |
| 318 | //! \brief Method for controlling the verbosity of logging output |
nothing calls this directly
no test coverage detected