Removes a couple printf in favour of SPDLOG calls.

This commit is contained in:
Kenix3 2022-08-08 22:20:43 -04:00
parent e4b58e5a0c
commit 1f351418e1
2 changed files with 2 additions and 6 deletions

View File

@ -511,9 +511,7 @@ void Ship::CutsceneV0::ParseFileBinary(BinaryReader* reader, Resource* res)
return;
}
default:
#ifdef _DEBUG
printf("CutsceneV0: Unknown command %x\n", commandId);
#endif
SPDLOG_TRACE("CutsceneV0: Unknown command {}\n", commandId);
// error?
break;
}

View File

@ -56,9 +56,7 @@ namespace Ship
patches.clear();
#if _DEBUG
if (file != nullptr)
printf("Deconstructor called on file %s\n", file->path.c_str());
#endif
SPDLOG_TRACE("Deconstructor called on file %s\n", file->path.c_str());
}
}