Ruby on rails 4 使用Capistrano 3部署时输出任务名称

Ruby on rails 4 使用Capistrano 3部署时输出任务名称,ruby-on-rails-4,capistrano3,Ruby On Rails 4,Capistrano3,是否有办法强制Capistrano 3在部署应用程序时打印正在执行的任务的名称 例如,我想得到类似于: deploy:starting # some commands # some commands some_custom_task # some commands # some commands deploy:started # some commands # some commands some_another_custom_task # some commands

是否有办法强制Capistrano 3在部署应用程序时打印正在执行的任务的名称

例如,我想得到类似于:

deploy:starting
  # some commands
  # some commands
some_custom_task
  # some commands
  # some commands
deploy:started
  # some commands
  # some commands
some_another_custom_task
  # some commands
  # some commands
deploy:updating 
  # some commands
  # some commands

谢谢你的老问题,但是你要找的是
--trace
-t

从帮助文档:

-t, --trace=[OUT]                Turn on invoke/execute tracing, enable full backtrace. OUT can be stderr (default) or stdout.
它看起来像这样(节选):


希望这对您或其他人有所帮助。

谢谢您,跟踪确实起到了作用,因为capistrano现在只是一个rake包装器。
* Invoke stage (first_time)
** Execute stage
** Invoke load:defaults (first_time)
** Execute load:defaults
** Invoke rbenv:validate (first_time)
** Execute rbenv:validate
DEBUG [f8847463] Running /usr/bin/env [ -d ~/.rbenv/versions/2.2.3 ] as user@example.com
DEBUG [f8847463] Command: [ -d ~/.rbenv/versions/2.2.3 ]
DEBUG [f8847463] Finished in 3.706 seconds with exit status 0 (successful).
** Invoke rbenv:map_bins (first_time)
** Execute rbenv:map_bins
** Invoke bundler:map_bins (first_time)
** Execute bundler:map_bins
** Invoke deploy:set_rails_env (first_time)
** Execute deploy:set_rails_env
** Invoke deploy:set_rails_env
** Invoke deploy (first_time)
** Execute deploy
** Invoke deploy:starting (first_time)
** Execute deploy:starting
** Invoke deploy:check (first_time)
** Execute deploy:check
** Invoke git:check (first_time)
** Invoke git:wrapper (first_time)
** Execute git:wrapper