]> _ Git - cubist_util.git/commitdiff
#7704
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 26 Aug 2025 16:40:11 +0000 (18:40 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 26 Aug 2025 16:40:11 +0000 (18:40 +0200)
src/CommandLine/Poppler.php

index 567a660976e473877c8bf90b4d2986a64075f5da..f4f5eba222b250e328c2e796bd641ac59b9fa039 100644 (file)
@@ -114,7 +114,9 @@ class Poppler
     public static function extractAreaFilehash($file, $page, $rect, $options): string
     {
         $f = Files::hashFileAttributes($file) . '||' . '++' . json_encode($rect) . '**' . json_encode($options) . '||' . $page . '!!';
-        return hash('sha256', $f);
+        $hash = hash('sha256', $f);
+        error_log($f, $hash);
+        return $hash;
     }
 
     /**