aboutsummaryrefslogtreecommitdiffstats
path: root/tests/logtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/logtest.cpp')
-rw-r--r--tests/logtest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/logtest.cpp b/tests/logtest.cpp
index 359311ec..9536f00a 100644
--- a/tests/logtest.cpp
+++ b/tests/logtest.cpp
@@ -12,8 +12,8 @@
int main()
{
- gLog << "Hello World";
+ gLog << "First message";
- gLog << "This is Yann";
- std::cout << "Hello\n";
+ gLog << "Second Message";
+ std::cout << "COUT\n";
}