# HG changeset patch # User Jakob Skjerning # Date 1249298133 -7200 # Node ID 85ae0e97bd9c42148d8fc0523ce492a46083de9a # Parent 7df4ad7db327b614fc561a30bd8b0e37a0d981d6 Provide a bit more of output to help debug issues diff -r 7df4ad7db327b614fc561a30bd8b0e37a0d981d6 -r 85ae0e97bd9c42148d8fc0523ce492a46083de9a app/controllers/github_hook_controller.rb --- a/app/controllers/github_hook_controller.rb Mon Aug 03 13:14:26 2009 +0200 +++ b/app/controllers/github_hook_controller.rb Mon Aug 03 13:15:33 2009 +0200 @@ -29,7 +29,8 @@ def exec(command) logger.info { "GithubHook: Executing command: '#{command}'" } - `#{command}` + output = `#{command}` + logger.info { "GithubHook: Shell returned '#{output}'" } end end