diff options
author | Derek Hower <drh5@cs.wisc.edu> | 2009-07-08 00:34:40 -0500 |
---|---|---|
committer | Derek Hower <drh5@cs.wisc.edu> | 2009-07-08 00:34:40 -0500 |
commit | 6a83bd5a03b7597b04ff447e232166a8afcaf402 (patch) | |
tree | a1a9aa56a207a0ccd0fcec594c6d5a36e60b6835 /src/mem/ruby | |
parent | 2f9d8bff5b67e7a64a0269f24dd7c472d3de3533 (diff) | |
download | gem5-6a83bd5a03b7597b04ff447e232166a8afcaf402.tar.xz |
ruby: set the default values of the debug object so that nothing is printed
Diffstat (limited to 'src/mem/ruby')
-rw-r--r-- | src/mem/ruby/config/defaults.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/config/defaults.rb b/src/mem/ruby/config/defaults.rb index 110bf4241..fb7d61060 100644 --- a/src/mem/ruby/config/defaults.rb +++ b/src/mem/ruby/config/defaults.rb @@ -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 |