Puli\Repository\AbstractJsonRepository::logReferenceNotFound PHP Method

logReferenceNotFound() protected method

Logs a warning that a reference could not be found.
protected logReferenceNotFound ( string $path, string $reference, string $absoluteReference )
$path string The Puli path of a path mapping.
$reference string The reference that was not found.
$absoluteReference string The absolute filesystem path of the reference.
    protected function logReferenceNotFound($path, $reference, $absoluteReference)
    {
        $this->log(LogLevel::WARNING, sprintf('The reference "%s"%s mapped by the path %s could not be found.', $reference, $reference !== $absoluteReference ? ' (' . $absoluteReference . ')' : '', $path));
    }