From 5fb7c972d44a3ce0a067101885d2e0c1966e7c89 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 2 Nov 2017 18:46:49 +0000 Subject: Adding logsink --- tests/logtest.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/logtest.cpp (limited to 'tests') diff --git a/tests/logtest.cpp b/tests/logtest.cpp new file mode 100644 index 00000000..9cd5288a --- /dev/null +++ b/tests/logtest.cpp @@ -0,0 +1,14 @@ +#include + +#include + +int main() +{ + gLog << "Hello World"; + yage::Logger l; + l() << "Hello my name is Yann"; + std::cout << "#####################\n"; + + gLog << "Yanananan"; + gLog << "Remove the top element"; +} -- cgit