ruby: set the default values of the debug object so that nothing is printed
authorDerek Hower <drh5@cs.wisc.edu>
Wed, 8 Jul 2009 05:34:40 +0000 (00:34 -0500)
committerDerek Hower <drh5@cs.wisc.edu>
Wed, 8 Jul 2009 05:34:40 +0000 (00:34 -0500)
src/mem/ruby/config/defaults.rb

index 110bf424114c1d01cda99f1df309a2a3a4503059..fb7d610606c8c551a53fc72d8d421471cdcb228a 100644 (file)
@@ -39,7 +39,7 @@ class Debug < LibRubyObject
   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, "q"
+  default_param :filter_string, String, ""
 
   # filters debugging messages based on priority (low, med, high)
   default_param :verbosity_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, ""
+  default_param :output_filename, String, "none"
 end
 
 class Topology < LibRubyObject