MCPcopy Create free account
hub / github.com/assimp/assimp / aiEnableVerboseLogging

Function aiEnableVerboseLogging

code/Common/Assimp.cpp:457–462  ·  view source on GitHub ↗

------------------------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

455
456// ------------------------------------------------------------------------------------------------
457ASSIMP_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.

Callers 1

mainFunction · 0.85

Calls 2

setLogSeverityMethod · 0.80
getFunction · 0.50

Tested by

no test coverage detected