You are here

public function UltimateCronJob::loadLogEntry in Ultimate Cron 7.2

Load log entry.

Parameters

string $lock_id: The lock id of the log entry.

Return value

UltimateCronLogEntry The log entry.

File

./ultimate_cron.job.inc, line 510
Job class for Ultimate Cron.

Class

UltimateCronJob
Class for handling cron jobs.

Code

public function loadLogEntry($lock_id) {
  return $this
    ->getPlugin('logger')
    ->load($this->name, $lock_id);
}