Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2007-10-27 13:17:31 +0000
committerStijn Buys <ingar@osirion.org>2007-10-27 13:17:31 +0000
commitbabef2ec1d88b6057b0e17bf1c04dfa3c9d0d5a0 (patch)
tree89c9f65138b500198061954fcf918ca82a11a5ea /src/client/console.cc
parent8a4aa60b830467d81f8029c194bec5b2e74ceb17 (diff)
conditional -DDEBUG messages
Diffstat (limited to 'src/client/console.cc')
-rw-r--r--src/client/console.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/console.cc b/src/client/console.cc
index 21dde67..f270108 100644
--- a/src/client/console.cc
+++ b/src/client/console.cc
@@ -11,17 +11,17 @@ namespace client {
std::ostream & Console::message()
{
- return std::cout;
+ return (std::cout << ". ");
}
std::ostream & Console::warning()
{
- return std::cerr;
+ return (std::cout << "! ");
}
std::ostream & Console::debug()
{
- return std::cout;
+ return (std::cout << "? ");
}
} // namespace client