]> _ Git - fluidbook_processfarm.git/commitdiff
wip #6149
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 20 Jul 2023 07:17:25 +0000 (09:17 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 20 Jul 2023 07:17:25 +0000 (09:17 +0200)
app/src/ProcessToolboxDocumentFile.php

index 6627750f9474996d5efb7a22ef5422f96a0d9e69..68a10e4fad22bcb518b2e3b6961f05169c14155d 100644 (file)
@@ -10,7 +10,11 @@ class ProcessToolboxDocumentFile extends ProcessFile {
 
        public function process() {
                $res = $this->getPath($this->isForce());
-               echo 'processed files : ' . $res . "\n";
+               if (!file_exists($res)) {
+                       error_log($res . 'not found :(');
+               }else{
+                       error_log($res . 'ok :)');
+               }
                return $res;
        }
 }
\ No newline at end of file