diff options
Diffstat (limited to 'code/debug.rb')
-rw-r--r-- | code/debug.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/code/debug.rb b/code/debug.rb index 24216723..5281cb15 100644 --- a/code/debug.rb +++ b/code/debug.rb @@ -38,18 +38,19 @@ module Debug @@stream = stream || STDERR @@level = level || 3 + @@name = "#{@@name}: " @@stream.sync = true end ## Write something to the output stream. def self.write(str) - @@stream.write(str) + @@stream.write(@@name + str.to_s) return str end ## Write something to the output stream with a newline at the end. def self.puts(str) - @@stream.puts(str) + @@stream.puts(@@name + str.to_s) return str end |