diff options
Diffstat (limited to 'lib/gras_impl/debug.hpp')
-rw-r--r-- | lib/gras_impl/debug.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gras_impl/debug.hpp b/lib/gras_impl/debug.hpp index 69f7b4a..5aa8e8e 100644 --- a/lib/gras_impl/debug.hpp +++ b/lib/gras_impl/debug.hpp @@ -66,12 +66,12 @@ struct WorkDebugPrinter WorkDebugPrinter(const std::string &name): lock(work_debug_mutex), name(name) { - std::cout << "-----> begin work on " << name << std::endl; + std::cerr << "-----> begin work on " << name << std::endl; } ~WorkDebugPrinter(void) { - std::cout << "<----- end work on " << name << std::endl; + std::cerr << "<----- end work on " << name << std::endl; } boost::mutex::scoped_lock lock; |