------------------------------------------------------------------------------------------------
| 455 | |
| 456 | // ------------------------------------------------------------------------------------------------ |
| 457 | ASSIMP_API void aiEnableVerboseLogging(aiBool d) { |
| 458 | if (!DefaultLogger::isNullLogger()) { |
| 459 | DefaultLogger::get()->setLogSeverity((d == AI_TRUE ? Logger::VERBOSE : Logger::NORMAL)); |
| 460 | } |
| 461 | gVerboseLogging = d; |
| 462 | } |
| 463 | |
| 464 | // ------------------------------------------------------------------------------------------------ |
| 465 | // Returns the error text of the last failed import process. |
no test coverage detected