summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--daemonize/daemonize_lib.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemonize/daemonize_lib.php b/daemonize/daemonize_lib.php
index 0923584..d6a16da 100644
--- a/daemonize/daemonize_lib.php
+++ b/daemonize/daemonize_lib.php
@@ -16,7 +16,7 @@ function daemonize_refresh( $pPidfile ) {
global $gDaemonTouchTimer;
static $ticks = 0;
if ($gDaemonTouchTimer + 15 < time()) { // So the revivifier can tell we've hung.
- if( ($ticks % 4) == 0 ) {
+ if( ($ticks % 10) == 0 ) {
// keep the noise down and only log a message once per minute
echo date( 'd/M/Y:H:i:s O' )." - DAEMON ".getmypid()." : Touching the file $pPidfile to ".time()."\n";
}