Replacing a few std::cout with spdlog::info/error
This commit is contained in:
@ -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());
|
||||
|
||||
|
Reference in New Issue
Block a user