File upload logging for dummies

This commit is contained in:
Mikael Nordfeldth
2016-03-05 00:59:39 +01:00
parent a9bdf761e8
commit 952f68fed5
2 changed files with 3 additions and 2 deletions

View 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);
}
}