Split of the line buffer from Console into ConsoleBuffer class
[supertux.git] / src / util / log.cpp
index 0b30709..de4fb3d 100644 (file)
@@ -26,8 +26,8 @@ LogLevel g_log_level = LOG_WARNING;
 
 static std::ostream& get_logging_instance (void)
 {
-  if (Console::current())
-    return (Console::output);
+  if (ConsoleBuffer::current())
+    return (ConsoleBuffer::output);
   else
     return (std::cerr);
 }