Closed Austen-Oberheu closed 6 years ago
Hi @Austen-Oberheu , according to this code found in wintoastlib.cpp, just define NDEBUG to stop WinToast from writing to console.
#ifdef NDEBUG
#define DEBUG_MSG(str) do { } while ( false )
#else
#define DEBUG_MSG(str) do { std::wcout << str << std::endl; } while( false )
#endif
Every notification prints an XML object to the console, is there anyway to stop it from doing that?