Random stuff that I should have committed ages ago.
[supertux.git] / src / log.hpp
index b26960a..9cd5a62 100644 (file)
@@ -73,7 +73,7 @@ inline std::ostream& log_fatal_f() {
 }
 
 #define log_debug if (0) std::cerr
-#define log_info Console::output
+#define log_info std::cout
 #define log_warning log_warning_f()
 #define log_fatal log_fatal_f()
 
@@ -81,6 +81,7 @@ inline std::ostream& log_fatal_f() {
 
 class Vector;
 std::ostream& operator<< (std::ostream& str, const Vector& vector);
+class Rect;
+std::ostream& operator<< (std::ostream& str, const Rect& rect);
 
 #endif
-