summaryrefslogtreecommitdiff
path: root/src/mem
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-09-23 18:17:11 -0700
committerNathan Binkert <nate@binkert.org>2009-09-23 18:17:11 -0700
commitbe0d74d6f6a4af96b975b40782bc28cfae78f624 (patch)
treece2072bf1c04899f25e72fc8b94f2a3cc95beeb2 /src/mem
parentd9f39c8ce75aac84c88b32392c2967344362906b (diff)
downloadgem5-be0d74d6f6a4af96b975b40782bc28cfae78f624.tar.xz
ruby: Disable all debug output by default
Diffstat (limited to 'src/mem')
-rw-r--r--src/mem/ruby/config/defaults.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/config/defaults.rb b/src/mem/ruby/config/defaults.rb
index 60f32ca14..160f25411 100644
--- a/src/mem/ruby/config/defaults.rb
+++ b/src/mem/ruby/config/defaults.rb
@@ -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