1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Use :err instead of :error (closes #6469)

git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@5341 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2006-10-23 03:31:10 +00:00
parent 86ec7f6fe6
commit 86166883bc

View file

@ -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