Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoveen Sachdeva <noveen.sachdeva@research.iiit.ac.in>2017-04-25 18:39:58 +0300
committerJoas Schilling <coding@schilljs.com>2017-04-25 18:39:58 +0300
commit1b1f403a5da0a170480b7ff376cd28d1ac7a64e0 (patch)
tree97cdb615848bfc137f20387c7a632ccf9beaee44 /cron.php
parent8ef25a7628d44465d4777686227407f9a2067700 (diff)
Add duration of last job execution to the table
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/cron.php b/cron.php
index f6c52446d3c..74935db0da9 100644
--- a/cron.php
+++ b/cron.php
@@ -121,11 +121,9 @@ try {
break;
}
- $logger->debug('Run ' . get_class($job) . ' job with ID ' . $job->getId(), ['app' => 'cron']);
$job->execute($jobList, $logger);
// clean up after unclean jobs
\OC_Util::tearDownFS();
- $logger->debug('Finished ' . get_class($job) . ' job with ID ' . $job->getId(), ['app' => 'cron']);
$jobList->setLastJob($job);
$executedJobs[$job->getId()] = true;