Skip to content

Commit

Permalink
Cleanup of old debug prints still around.
Browse files Browse the repository at this point in the history
  • Loading branch information
Codinablack committed Dec 8, 2024
1 parent d726360 commit 4deca50
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/iologindata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1184,9 +1184,6 @@ void IOLoginData::loadPlayerAugments(std::vector<std::shared_ptr<Augment>>& augm
for (uint32_t i = 0; i < augmentCount; ++i) {
auto augment = std::make_shared<Augment>();

// Log before unserialization
std::cout << "INFO: Attempting to unserialize augment " << i << " for player " << playerID << std::endl;

try {
if (!augment->unserialize(augmentStream)) {
std::cout << "WARNING: Failed to unserialize augment " << i
Expand All @@ -1201,7 +1198,6 @@ void IOLoginData::loadPlayerAugments(std::vector<std::shared_ptr<Augment>>& augm
return;
}
}
std::cout << "INFO: Completed loading augments for player " << playerID << std::endl;
}
catch (const std::exception& e) {
std::cout << "ERROR: Exception in loadPlayerAugments: " << e.what() << std::endl;
Expand Down

0 comments on commit 4deca50

Please sign in to comment.