Replacing a few std::cout with spdlog::info/error

This commit is contained in:
2023-05-09 19:36:34 +02:00
parent 52747202d3
commit 43fc721413
9 changed files with 24 additions and 24 deletions

View File

@ -6,7 +6,7 @@
void WriteFile(std::string& emitter, std::filesystem::path path)
{
std::cout << "Writing Scene file to: " << path.u8string() << std::endl;
spdlog::info( "Writing Scene file to: {0}" , path.u8string());
std::ofstream sceneFile;
sceneFile.open(path.u8string());