# File lib/rubytorrent/util.rb, line 22
def rt_warning(*args)
  if $DEBUG || RubyTorrent.log
    stream = RubyTorrent.log || $stderr
    stream << "warning: " << args.join << "\n" 
    stream.flush
  end
end