From 86166883bc1c97dada457b290234c9316881fb3a Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Mon, 23 Oct 2006 03:31:10 +0000 Subject: [PATCH] Use :err instead of :error (closes #6469) git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@5341 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- lib/capistrano/actor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/capistrano/actor.rb b/lib/capistrano/actor.rb index d7ae01ae..c0346cda 100644 --- a/lib/capistrano/actor.rb +++ b/lib/capistrano/actor.rb @@ -38,7 +38,7 @@ module Capistrano self.transfer_factory = Transfer self.default_io_proc = Proc.new do |ch, stream, out| - level = stream == :error ? :important : :info + level = stream == :err ? :important : :info ch[:actor].logger.send(level, out, "#{stream} :: #{ch[:host]}") end