Use verbose debug logging in certain places

This commit is contained in:
Malcolm Tyrrell
2020-05-15 12:59:48 +01:00
parent 5e0136d737
commit e11d78596f
10 changed files with 18 additions and 18 deletions

View File

@@ -75,7 +75,7 @@ void PrefixString(aiString& string,const char* prefix, unsigned int len) {
return;
if (len+string.length>=MAXLEN-1) {
ASSIMP_LOG_DEBUG("Can't add an unique prefix because the string is too long");
ASSIMP_LOG_VERBOSE_DEBUG("Can't add an unique prefix because the string is too long");
ai_assert(false);
return;
}