add the # of seconds before kill to the log line

This commit is contained in:
Isaac Connor 2018-04-23 11:16:24 -04:00
parent 235fc640be
commit f752b3077a
1 changed files with 4 additions and 3 deletions

View File

@ -528,9 +528,10 @@ sub kill_until_dead {
sigprocmask(SIG_BLOCK, $blockset, $sigset ) or die "dying at block...\n";
while( $process and $$process{pid} and kill( 0, $$process{pid} ) ) {
if ( $count++ > 10 ) {
dPrint( ZoneMinder::Logger::WARNING, "'$$process{command}' has not stopped at "
.strftime( '%y/%m/%d %H:%M:%S', localtime() )
.". Sending KILL to pid $$process{pid}\n"
dPrint(ZoneMinder::Logger::WARNING, "'$$process{command}' has not stopped at "
.strftime('%y/%m/%d %H:%M:%S', localtime())
.' after ' . ( KILL_DELAY * $count ) . ' seconds.'
." Sending KILL to pid $$process{pid}\n"
);
kill( 'KILL', $$process{pid} );
last;