--- linuxsampler/trunk/src/common/LinuxSamplerException.h 2004/04/27 09:21:58 56 +++ linuxsampler/trunk/src/common/LinuxSamplerException.h 2004/08/15 17:25:31 216 @@ -50,8 +50,12 @@ return what(); } + /** + * Print the cause of the exception to the standard error + * output channel. + */ void PrintMessage() { - std::cout << what() << std::endl; + std::cerr << what() << std::endl << std::flush; } };