I've set my Capistrano configuration's log level to error
to prevent verbose output. In deploy.rb
I've added set :log_level, :error
. This works great. However, when I run commands via execute
, it isn't printed as it's being written under the log level of DEBUG
. How can I get the output of execute
commands to be printed out? I am able to use capture
with the combination of puts
to output it, but this doesn't help when I have to stream the logs.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You can do this by defining the following method in your deploy.rb file:
def with_verbosity(verbosity_level)
old_verbosity = SSHKit.config.output_verbosity
begin
SSHKit.config.output_verbosity = verbosity_level
yield
ensure
SSHKit.config.output_verbosity = old_verbosity
end
end
Then simply call it like this:
with_verbosity(Logger::DEBUG) do
execute "./blah.sh"
end