From 1c6285f8aff790615b51d447d702760c612dd3d3 Mon Sep 17 00:00:00 2001 From: David Dollar Date: Wed, 4 Jan 2012 12:15:17 -0500 Subject: [PATCH] add more information when shutting down --- lib/foreman/engine.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/foreman/engine.rb b/lib/foreman/engine.rb index a398bbb..c65a5a5 100644 --- a/lib/foreman/engine.rb +++ b/lib/foreman/engine.rb @@ -71,6 +71,7 @@ private ###################################################################### def kill_all(signal="SIGTERM") running_processes.each do |pid, process| + info "sending #{signal} to pid #{pid}" Process.kill(signal, pid) rescue Errno::ESRCH end end