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

@ -31,9 +31,9 @@ public:
location = std::string(path);
break;
case(NFD_CANCEL):
std::cout << "NFD_CANCEL" << std::endl;
spdlog::info("NFD_CANCEL" );
case (NFD_ERROR):
std::cout << "NFD_Error: " << NFD_GetError() << std::endl;
spdlog::error("NFD_Error: {0}" , NFD_GetError() );
break;
};