aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/models/incoming_message.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb
index ca5676c67..bfb318565 100644
--- a/app/models/incoming_message.rb
+++ b/app/models/incoming_message.rb
@@ -180,6 +180,7 @@ def external_command(program_name, *args)
xc.run()
if xc.status != 0
# Error
+ $stderr.puts("Error from #{program_name} #{args.join(' '):}")
$stderr.print(xc.err)
return nil
else