X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fdebug%2Flogtest.cxx;h=07a6501a16412ec498258dc7a37782e980d4556f;hb=9f88b077ee5294c4ad898016b7d66682466bbafb;hp=bf923e7a657f87d1c6ecca650e7c8f5d42ba4daa;hpb=557fade4a7df3f030b943ba6114c3c566c57b73c;p=simgear.git diff --git a/simgear/debug/logtest.cxx b/simgear/debug/logtest.cxx index bf923e7a..07a6501a 100644 --- a/simgear/debug/logtest.cxx +++ b/simgear/debug/logtest.cxx @@ -1,16 +1,32 @@ #include -#include "Debug/logstream.hxx" +#include + +class Test { + + public: + Test() { + //cout << "Cout seems to work" << endl; + //cerr << "Cerr seems to work" << endl; + + sglog().setLogLevels( SG_ALL, SG_INFO ); + + SG_LOG(SG_EVENT, SG_INFO, "Test::Test" << "foo"); + } + +}; + +Test test; int main( int argc, char* argv[] ) { - fglog().setLogLevels( SG_ALL, SG_INFO ); + sglog().setLogLevels( SG_ALL, SG_INFO ); - SG_LOG( FG_TERRAIN, FG_BULK, "terrain::bulk" ); // shouldnt appear - SG_LOG( FG_TERRAIN, SG_DEBUG, "terrain::debug" ); // shouldnt appear - SG_LOG( FG_TERRAIN, SG_INFO, "terrain::info" ); - SG_LOG( FG_TERRAIN, FG_WARN, "terrain::warn" ); - SG_LOG( FG_TERRAIN, SG_ALERT, "terrain::alert" ); + //SG_LOG( FG_TERRAIN, FG_BULK, "terrain::bulk" ); // shouldnt appear + //SG_LOG( FG_TERRAIN, SG_DEBUG, "terrain::debug" ); // shouldnt appear + //SG_LOG( FG_TERRAIN, SG_INFO, "terrain::info" ); + //SG_LOG( FG_TERRAIN, FG_WARN, "terrain::warn" ); + //SG_LOG( FG_TERRAIN, SG_ALERT, "terrain::alert" ); int i = 12345; long l = 54321L;