set debuglevel to 0; it's annoying otherwise

This commit is contained in:
Ward Wouts 2002-05-06 21:17:28 +00:00
parent de8d94d979
commit e926490e30

View file

@ -38,7 +38,7 @@ class NNTP
CRLF = "\r\n" CRLF = "\r\n"
def initialize(host, port=NNTP_PORT, user=nil, password=nil, readermode=nil) def initialize(host, port=NNTP_PORT, user=nil, password=nil, readermode=nil)
@debuglevel = 2 @debuglevel = 0
@host = host @host = host
if port then @port = port else @port = NNTP_PORT end if port then @port = port else @port = NNTP_PORT end
@socket = TCPSocket.new @host, @port @socket = TCPSocket.new @host, @port