Console logging is now identical in all builds; warning and error show the console...
[supertux.git] / src / util / log.cpp
1 //  SuperTux Debug Helper Functions
2 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "util/log.hpp"
18
19 #include "math/rectf.hpp"
20 #include "supertux/console.hpp"
21
22 std::ostream& log_debug_f(const char* file, int line) 
23 {
24   Console::output << "[DEBUG] " << file << ":" << line << " ";
25   return Console::output;
26 }
27
28 std::ostream& log_info_f(const char* file, int line) 
29 {
30   Console::output << "[INFO] " << file << ":" << line << " ";
31   return Console::output;
32 }
33
34 std::ostream& log_warning_f(const char* file, int line) 
35 {
36   Console::instance->open();
37   Console::output << "[WARNING] " << file << ":" << line << " ";
38   return Console::output;
39 }
40
41 std::ostream& log_fatal_f(const char* file, int line) 
42 {
43   Console::instance->open();
44   Console::output << "[FATAL] " << file << ":" << line << " ";
45   return Console::output;
46 }
47
48 std::ostream& operator<<(std::ostream& out, const Vector& vector)
49 {
50   out << '[' << vector.x << ',' << vector.y << ']';
51   return out;
52 }
53
54 std::ostream& operator<<(std::ostream& out, const Rectf& rect)
55 {
56   out << "[" << rect.get_left() << "," << rect.get_top() << "   "
57       << rect.get_right() << "," << rect.get_bottom() << "]";
58   return out;
59 }
60
61 /* EOF */