]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
File upload logging for dummies
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 4 Mar 2016 23:59:39 +0000 (00:59 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 4 Mar 2016 23:59:39 +0000 (00:59 +0100)
lib/filenotfoundexception.php
lib/mediafile.php

index d3610249db64e1d8507ca16edb5adca4958effd6..70dd2d0b5d1d1941e5aa43414c574bd6146d6eb2 100644 (file)
@@ -36,6 +36,7 @@ class FileNotFoundException extends ServerException
     public function __construct($path)
     {
         $this->path = $path;
+        common_debug('File not found exception for: '._ve($this->path));
         parent::__construct(_('File not found in filesystem.'), 404);
     }
 }
index 1e0fb39769953ba772ae6916e6cf7593136c75d6..7534dc53cb82318df7d3b9b7b3813bcc7f247088 100644 (file)
@@ -306,10 +306,10 @@ class MediaFile
             $result = copy($stream['uri'], $filepath) && chmod($filepath, 0664);
 
             if (!$result) {
+                common_log(LOG_ERR, 'File could not be moved (or chmodded) from '._ve($stream['uri']) . ' to ' . _ve($filepath));
                 // TRANS: Client exception thrown when a file upload operation fails because the file could
                 // TRANS: not be moved from the temporary folder to the permanent file location.
-                throw new ClientException(_('File could not be moved to destination directory.' .
-                    $stream['uri'] . ' ' . $filepath));
+                throw new ClientException(_('File could not be moved to destination directory.' ));
             }
         }