X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fdebug%2Flogtest.cxx;h=07a6501a16412ec498258dc7a37782e980d4556f;hb=9f88b077ee5294c4ad898016b7d66682466bbafb;hp=b02c6b086beec56af1815eab4f525d736ae3a3fc;hpb=5173d709e090b953eaf800cbcd1bf897de332a12;p=simgear.git diff --git a/simgear/debug/logtest.cxx b/simgear/debug/logtest.cxx index b02c6b08..07a6501a 100644 --- a/simgear/debug/logtest.cxx +++ b/simgear/debug/logtest.cxx @@ -1,23 +1,39 @@ #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( FG_ALL, FG_INFO ); + sglog().setLogLevels( SG_ALL, SG_INFO ); - FG_LOG( FG_TERRAIN, FG_BULK, "terrain::bulk" ); // shouldnt appear - FG_LOG( FG_TERRAIN, FG_DEBUG, "terrain::debug" ); // shouldnt appear - FG_LOG( FG_TERRAIN, FG_INFO, "terrain::info" ); - FG_LOG( FG_TERRAIN, FG_WARN, "terrain::warn" ); - FG_LOG( FG_TERRAIN, FG_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; double d = 3.14159; string s = "Hello world!"; - FG_LOG( FG_EVENT, FG_INFO, "event::info " + SG_LOG( SG_EVENT, SG_INFO, "event::info " << "i=" << i << ", l=" << l << ", d=" << d @@ -25,7 +41,7 @@ main( int argc, char* argv[] ) << ", s=\"" << s << "\"" ); // This shouldn't appear in log output: - FG_LOG( FG_EVENT, FG_DEBUG, "event::debug " + SG_LOG( SG_EVENT, SG_DEBUG, "event::debug " << "- this should be seen - " << "d=" << d << ", s=\"" << s << "\"" );