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

Method debug

code/Common/DefaultLogger.cpp:166–175  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

164
165// ----------------------------------------------------------------------------------
166void Logger::debug(const char *message) {
167
168 // SECURITY FIX: otherwise it's easy to produce overruns since
169 // sometimes importers will include data from the input file
170 // (i.e. node names) in their messages.
171 if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
172 return OnDebug("<fixme: long message discarded>");
173 }
174 return OnDebug(message);
175}
176
177// ----------------------------------------------------------------------------------
178void Logger::verboseDebug(const char *message) {

Callers 3

logDebugFunction · 0.80
_initFunction · 0.80
search_libraryFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected