aboutsummaryrefslogtreecommitdiffstats
path: root/tests/logtest.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-11-16 16:27:47 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-11-16 16:27:47 +0000
commit82a3db85138c91df397fd820a3b5d1a0b5c21ef9 (patch)
tree6c6435962594df18eb2b6ed1d07740aecd0778ff /tests/logtest.cpp
parent443ae47fc210bcfe10f6f6c5ac8aa3453e1d29d2 (diff)
downloadYAGE-82a3db85138c91df397fd820a3b5d1a0b5c21ef9.tar.gz
YAGE-82a3db85138c91df397fd820a3b5d1a0b5c21ef9.zip
Asynchronous logging added
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";
}