0.6.9 bugfreeze
authorKevron Rees <kevron_m_rees@linux.intel.com>
Thu, 17 Jan 2013 00:11:07 +0000 (16:11 -0800)
committerKevron Rees <kevron_m_rees@linux.intel.com>
Thu, 17 Jan 2013 00:11:07 +0000 (16:11 -0800)
CMakeLists.txt
lib/debugout.h

index 60df2a6..660954c 100644 (file)
@@ -6,7 +6,7 @@ set(CMAKE_BUILD_TYPE, Debug)
 include(FindPkgConfig)
 
 set(PROJECT_NAME "automotive-message-broker")
-set(PROJECT_VERSION "0.6.1")
+set(PROJECT_VERSION "0.6.9")
 
 add_definitions(-DPROJECT_VERSION="${PROJECT_VERSION}")
 add_definitions(-DPROJECT_NAME="${PROJECT_NAME}")
index 0d952da..79a70a3 100644 (file)
@@ -39,7 +39,8 @@ public:
 
                out.precision(15);
 
-               out<<amb::currentTime()<<" | ";
+               if(mDebugLevel <= debugThreshhold)
+                       out<<amb::currentTime()<<" | ";
        }
 
        DebugOut const& operator << (string message) const