set_debug_output(arg)
public
WARNING: This method causes a serious security hole. Use this method
only for debugging.
Set an output stream for debugging.
Example
pop = Net::POP.new(addr, port)
pop.set_debug_output $stderr
pop.start(account, passwd) do |pop|
....
end
# File lib/net/pop.rb, line 486
def set_debug_output(arg)
@debug_output = arg
end