https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 --- Comment #168 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- This doesn't look quite right to me and will be untranslatable/cannot be searched for: misc/cronjobs/harvest_oai.pl:cronlogaction( { action => 'Start', info => "Starting OAI Harvest" } ); misc/cronjobs/harvest_oai.pl:cronlogaction( { info => "Command line: $command_line_options" } ); misc/cronjobs/harvest_oai.pl:cronlogaction( { action => 'End', info => "Ending OAI Harvest" } ); For comparison: misc/cronjobs/batch_anonymise.pl:use C4::Log qw( cronlogaction ); misc/cronjobs/batch_anonymise.pl:cronlogaction({ info => $command_line_options }); misc/cronjobs/batch_anonymise.pl:cronlogaction({ action => 'End', info => "COMPLETED" }); misc/cronjobs/build_browser_and_cloud.pl:cronlogaction({ info => $command_line_options }); misc/cronjobs/build_browser_and_cloud.pl:cronlogaction({ action => 'End', info => "COMPLETED" }); misc/cronjobs/cart_to_shelf.pl:use C4::Log qw( cronlogaction ); misc/cronjobs/cart_to_shelf.pl:cronlogaction({ info => $command_line_options }); misc/cronjobs/cart_to_shelf.pl:cronlogaction({ action => 'End', info => "COMPLETED" }); misc/cronjobs/cleanup_database.pl:use C4::Log qw( cronlogaction ); misc/cronjobs/cleanup_database.pl:cronlogaction( { info => $command_line_options } ); misc/cronjobs/cleanup_database.pl:cronlogaction( { action => 'End', info => "COMPLETED" } ); -- You are receiving this mail because: You are watching all bug changes.