ruby: Disable all debug output by default
authorNathan Binkert <nate@binkert.org>
Thu, 24 Sep 2009 01:17:11 +0000 (18:17 -0700)
committerNathan Binkert <nate@binkert.org>
Thu, 24 Sep 2009 01:17:11 +0000 (18:17 -0700)
src/mem/ruby/config/defaults.rb

index 60f32ca14daf0a44d400ba8faa123f0ea7532bbc..160f254115856353c2fe7d60ade3bdcf5d8f6d1b 100644 (file)
@@ -36,7 +36,7 @@ class Debug < LibRubyObject
   #   1. change protocol_trace = true
   #   2. enable debug in the Ruby Makefile
   #   3. set start_time = 1
-  default_param :protocol_trace, Boolean, true
+  default_param :protocol_trace, Boolean, false
 
   # a string for filtering debugging output (for all g_debug vars see Debug.h)
   default_param :filter_string, String, "none"
@@ -48,7 +48,7 @@ class Debug < LibRubyObject
   default_param :start_time, Integer, 1
   
   # sends debugging messages to a output filename
-  default_param :output_filename, String, "debug_ss"
+  default_param :output_filename, String, "none"
 end
 
 class Topology < LibRubyObject