假设我的食谱中有一个自定义任务,如下所示:
task :custom_task1 do
run_locally "cap -S config=blah another_custom_task
end
和
task :another_custom_task do
puts "hi"
end
然后,不会打印“hi”。如何解决或克服这种情况?它不允许我使用命令行。
编辑:
为什么我不能使用记录器?Capistrano,默认情况下说话太多 - 所以我有一个设置,将它的记录器设置为只喊出重要的错误。所以不能使用 logger.info 或类似的东西。