Remove stderr print

git-svn-id: file:///home/svn/framework3/trunk@5323 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2008-01-22 06:19:35 +00:00
parent 54444bf39c
commit 248eab9b41
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class BidirectionalPipe < Rex::Ui::Text::Input
begin
@subscribers_ref[id] ? @subscribers_ref[id].call(msg) : buf.print(msg)
rescue ::Exception => e
$stderr.puts "Error handling subscriber #{id}: #{e.to_s} #{e.backtrace.inspect}"
# $stderr.puts "Error handling subscriber #{id}: #{e.to_s} #{e.backtrace.inspect}"
raise e
end
}