From 1181f7da01538dd95087b1d9da47214439cbbc41 Mon Sep 17 00:00:00 2001 From: aina-esokia Date: Tue, 31 Jul 2018 11:21:48 +0400 Subject: [PATCH] add subdef building duration in task log --- lib/Alchemy/Phrasea/Media/SubdefGenerator.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lib/Alchemy/Phrasea/Media/SubdefGenerator.php b/lib/Alchemy/Phrasea/Media/SubdefGenerator.php index 94631fd03d..eb1db11777 100644 --- a/lib/Alchemy/Phrasea/Media/SubdefGenerator.php +++ b/lib/Alchemy/Phrasea/Media/SubdefGenerator.php @@ -169,6 +169,8 @@ class SubdefGenerator private function generateSubdef(\record_adapter $record, \databox_subdef $subdef_class, $pathdest) { + $start = microtime(true); + try { if (null === $record->get_hd_file()) { $this->logger->info('No HD file found, aborting'); @@ -203,8 +205,24 @@ class SubdefGenerator } } catch (MediaAlchemystException $e) { + $start = 0; $this->logger->error(sprintf('Subdef generation failed for record %d with message %s', $record->getRecordId(), $e->getMessage())); } + + $stop = microtime(true); + if($start){ + $duration = $stop - $start; + + $this->logger->info(sprintf('Subdef %s generated, duration = %s / sbasid=%s / databox=%s / recordid=%s', + $subdef_class->get_name(), + date('H:i:s', $duration), + $record->getDatabox()->get_sbas_id(), + $record->getDatabox()->get_dbname(), + $record->getRecordId() + ) + ); + } + } private function generatePdfSubdef($source, $pathdest)