SFML community forums
Help => General => Topic started by: tntexplosivesltd on May 08, 2011, 03:52:00 pm
-
Hi there
Just wondering if there is a way of intercepting SFML error messages (I assume they are bound for stderr or sdtout).
I want to be able to display errors on the screen, rather than have them go to the console.
Thanks in advance.
-
Yep, they go to std::cerr, so you can easily redirect them to a different streambuf.
-
Cool, thanks for that!