diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 5b954bd..1048523 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -27,8 +27,6 @@ #include <libgnomecanvasmm/init.h> #include <glibmm/exception.h> -#include "raul/log.hpp" - #include "Patchage.hpp" #ifdef __APPLE__ @@ -80,10 +78,10 @@ main(int argc, char** argv) app.run(*patchage.window()); } catch (std::exception& e) { - Raul::error << "patchage: error: " << e.what() << std::endl; + std::cerr << "patchage: error: " << e.what() << std::endl; return 1; } catch (Glib::Exception& e) { - Raul::error << "patchage: error: " << e.what() << std::endl; + std::cerr << "patchage: error: " << e.what() << std::endl; return 1; } |