\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
| 243 | //! inheritance from nvinfer1::ILogger |
| 244 | //! |
| 245 | void log(Severity severity, const char* msg) override |
| 246 | { |
| 247 | LogStreamConsumer(mReportableSeverity, severity) << "[TRT] " << std::string(msg) << std::endl; |
| 248 | } |
| 249 | |
| 250 | //! |
| 251 | //! \brief Method for controlling the verbosity of logging output |
nothing calls this directly
no test coverage detected