From 82a3db85138c91df397fd820a3b5d1a0b5c21ef9 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 16 Nov 2017 16:27:47 +0000 Subject: Asynchronous logging added --- tests/logtest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/logtest.cpp') 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"; } -- cgit