1

我希望能够从 SSHKit 调用的 rake 任务中输出信息,但我不知道该怎么做。

假设我有以下 rake 任务:

require 'sshkit/dsl'

task :hello => :environment do  
  puts "Hello world"
end

task :sshkit_hello => :environment do  
  run_locally do
    rake "hello"  
  end
end

如果我自己运行 :hello 任务,我会看到“hello world”语句。但是,从 sshkit 任务中调用它,我只会得到 SSHKit 信息。如何从 SSHKit 调用时出现的第一个 rake 任务中写出信息?

rake hello
=> Hello world

rake sshkit_hello
=> INFO [f0857f14] Running /usr/bin/env rake hello on 
=> INFO [f0857f14] Finished in 6.107 seconds with exit status 0 (successful).

编辑1:

我发现您可以添加以下内容以获得基本的终端输出:

SSHKit.config.output = $stdout 

但是,同样,输出的信息是相同的——它告诉你它正在运行“rake hello”,而不是“rake hello”的输出。

rake sshkit_hello
=> rake hello
4

1 回答 1

5

解决了!

我真正需要做的是将 output_verbosity 更改为 :debug 以便它在第二个 rake 任务中显示 puts 语句:

SSHKit.config.output_verbosity = :debug

rake sshkit_hello
=>  INFO [6dd1bbf7] Running bundle exec rake hello on 
=> DEBUG [6dd1bbf7] Command: bundle exec rake hello
=> DEBUG [6dd1bbf7]     Hello World!
=>  INFO [6dd1bbf7] Finished in 6.596 seconds with exit status 0 (successful).
于 2014-02-24T10:46:36.173 回答