Fix #1286 - remove error_log

This commit is contained in:
Anaggh S 2020-11-22 19:12:08 +05:30
parent b9a7b3b50a
commit a03c9f2558

View file

@ -27,7 +27,6 @@ class Filesystem {
// $chunk = amount of chunks, FALSE if you don't want to chunk // $chunk = amount of chunks, FALSE if you don't want to chunk
public static function listFiles($path, $regex='*', $extension='*', $sortByDate=false, $chunk=false) public static function listFiles($path, $regex='*', $extension='*', $sortByDate=false, $chunk=false)
{ {
error_log($path.$regex.'.'.$extension);
$files = glob($path.$regex.'.'.$extension); $files = glob($path.$regex.'.'.$extension);
if (empty($files)) { if (empty($files)) {