]> git.mxchange.org Git - simgear.git/blobdiff - simgear/debug/logtest.cxx
Harald JOHNSEN:
[simgear.git] / simgear / debug / logtest.cxx
index b02c6b086beec56af1815eab4f525d736ae3a3fc..afa5ddcc2a816c124196278334ecc0f6f3a4facf 100644 (file)
@@ -1,23 +1,39 @@
 #include <string>
 #include "Debug/logstream.hxx"
 
+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 << "\"" );