/* server/console.cc This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ #include "console.h" #include namespace server { std::ostream & Console::message() { return std::cout; } std::ostream & Console::warning() { return std::cerr; } std::ostream & Console::debug() { return std::cout; } } // namespace server