Skip to content
Snippets Groups Projects
Commit d822230b authored by Helmo's avatar Helmo
Browse files

Make the logged line 'finished' a bit more informative and easier to identify.

parent 1c85a6c7
No related branches found
No related tags found
No related merge requests found
......@@ -128,6 +128,6 @@ $app->services->processDelayedActions();
@unlink($conf['temppath'] . $conf['fs_div'] . '.ispconfig_cron_lock');
$app->log('Remove Lock: ' . $conf['temppath'] . $conf['fs_div'] . '.ispconfig_cron_lock', LOGLEVEL_DEBUG);
if($conf['log_priority'] <= LOGLEVEL_DEBUG) die("finished.\n");
if($conf['log_priority'] <= LOGLEVEL_DEBUG) die("finished cron run.");
?>
......@@ -63,6 +63,6 @@ $class_name = 'cronjob_' . $name;
$cronjob = new $class_name();
$cronjob->run(true);
die("finished.\n");
die("finished cron debug.\n");
?>
......@@ -217,5 +217,5 @@ if ($needStartCore) {
$app->log('Remove Lock: ' . $conf['temppath'] . $conf['fs_div'] . '.ispconfig_lock', LOGLEVEL_DEBUG);
die("finished.\n");
die("finished server.php.\n");
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment