From f9af80cee82961e551d033f4c73fb2d82dc8091a Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 27 Aug 2025 17:26:45 +0200 Subject: [PATCH] #7704 --- src/CommandLine/Poppler.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/CommandLine/Poppler.php b/src/CommandLine/Poppler.php index 5c411e7..768a9a7 100644 --- a/src/CommandLine/Poppler.php +++ b/src/CommandLine/Poppler.php @@ -122,9 +122,7 @@ class Poppler $options = static::_normalizeExtractAreaOptions($options); $f = Files::hashFileAttributes($file) . '||' . '++' . json_encode($rect) . '**' . json_encode($options) . '||' . $page . '!!'; - $hash = hash('sha256', $f); - error_log($f . ' => ' . $hash . ' (' . $file . ')'); - return $hash; + return hash('sha256', $f); } /** -- 2.39.5