Index: trunk/IPs/systemC/Environment/Common/include/Debug.h
===================================================================
--- trunk/IPs/systemC/Environment/Common/include/Debug.h	(revision 117)
+++ trunk/IPs/systemC/Environment/Common/include/Debug.h	(revision 122)
@@ -3,12 +3,12 @@
 
 #define DEBUG_true        true
-#define DEBUG_ENVIRONMENT true
-#define DEBUG_CACHE       true
-#define DEBUG_DATA        true
-#define DEBUG_ENDIANNESS  true
-#define DEBUG_QUEUE       true
-#define DEBUG_RAMLOCK     true
-#define DEBUG_SIM2OS      true
-#define DEBUG_TTY         true
+#define DEBUG_ENVIRONMENT false
+#define DEBUG_CACHE       false
+#define DEBUG_DATA        false
+#define DEBUG_ENDIANNESS  false
+#define DEBUG_QUEUE       false
+#define DEBUG_RAMLOCK     false
+#define DEBUG_SIM2OS      false
+#define DEBUG_TTY         false
 
 #define MSG_ENVIRONMENT "[ENVIRONMENT]"
@@ -17,6 +17,9 @@
   do									\
     {									\
-      fprintf(stdout,str);						\
-    } 								        \
+      if (DEBUG_ ## component == true )                                 \
+	{								\
+          fprintf(stdout,str);						\
+        }                                                               \
+    }                                                                   \
   while(0)
 
