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