# File lib/rubytorrent/util.rb, line 14
def rt_debug(*args)
  if $DEBUG || RubyTorrent.log
    stream = RubyTorrent.log || $stdout
    stream << args.join << "\n" 
    stream.flush
  end
end