aboutsummaryrefslogtreecommitdiffstats
path: root/tests/logtest.cpp
blob: 9cd5288a60b5e13991274972fd26f7085896e136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <yage.h>

#include <iostream>

int main()
{
    gLog << "Hello World";
    yage::Logger l;
    l() << "Hello my name is Yann";
    std::cout << "#####################\n";

    gLog << "Yanananan";
    gLog << "Remove the top element";
}