Debug message adjustments

This commit is contained in:
akkadius
2014-09-21 16:24:06 -05:00
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -1364,7 +1364,8 @@ bool Database::CheckDatabaseConversions() {
}
/* Continue of PP Size does not match (Usually a created character never logged in) */
else {
printf("\nCharacter %s(%u) was missing profile data, character not converted.", row2[2] ? row2[2] : "Unknown", character_id);
// printf("%s ID: %i profile mismatch, not converting. PP %u - Profile Length %u \n", row2[2] ? row2[2] : "Unknown", character_id, sizeof(PlayerProfile_Struct), lengths);
std::cout << (row2[2] ? row2[2] : "Unknown") << " ID: " << character_id << " size mismatch. Expected Size: " << sizeof(PlayerProfile_Struct) << " Seen: " << lengths << std::endl;
continue;
}