]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/filenotfoundexception.php
File upload logging for dummies
[quix0rs-gnu-social.git] / lib / filenotfoundexception.php
index e7ea7bc23cd6bc43ac9ef30c85e92da4b95e1ebb..70dd2d0b5d1d1941e5aa43414c574bd6146d6eb2 100644 (file)
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @category  Exception
- * @package   GNUSocial
+ * @package   GNUsocial
  * @author    Mikael Nordfeldth <mmn@hethane.se>
  * @copyright 2013 Free Software Foundation, Inc.
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
@@ -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);
     }
 }