From e926490e30359f882b0bec376f0b5432858d3dc5 Mon Sep 17 00:00:00 2001 From: Ward Wouts Date: Mon, 6 May 2002 21:17:28 +0000 Subject: [PATCH] set debuglevel to 0; it's annoying otherwise --- trunk/ripnews/net/nntp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/ripnews/net/nntp.rb b/trunk/ripnews/net/nntp.rb index 6929f28..13d49e6 100644 --- a/trunk/ripnews/net/nntp.rb +++ b/trunk/ripnews/net/nntp.rb @@ -38,7 +38,7 @@ class NNTP CRLF = "\r\n" def initialize(host, port=NNTP_PORT, user=nil, password=nil, readermode=nil) - @debuglevel = 2 + @debuglevel = 0 @host = host if port then @port = port else @port = NNTP_PORT end @socket = TCPSocket.new @host, @port