Do not print backtrace when handling Exception.

git-svn-id: file:///home/svn/framework3/trunk@6544 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Ramon de C Valle 2009-05-11 17:51:02 +00:00
parent 8c3266b484
commit a044ac4661
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ def run
raise $!
rescue ::Rex::ConnectionError
rescue ::Exception => e
print_status("Error: #{targ}: #{e} #{e.backtrace}")
print_status("Error: #{targ}: #{e.message}")
end
end
end