diff --git a/objects/functionsExec.php b/objects/functionsExec.php index 41fc0a3eb88d..cd409740779e 100644 --- a/objects/functionsExec.php +++ b/objects/functionsExec.php @@ -23,14 +23,14 @@ function getDurationFromFile($file) if (!file_exists($videoFile)) { $file_headers = @get_headers($videoFile); if (!$file_headers || $file_headers[0] == 'HTTP/1.1 404 Not Found') { - error_log('getDurationFromFile try 1, File (' . $videoFile . ') Not Found'); + error_log('getDurationFromFile try 1, File (' . $videoFile . ') Not Found original='.$file); $videoFile = $hls; } } if (!file_exists($videoFile)) { $file_headers = @get_headers($videoFile); if (!$file_headers || $file_headers[0] == 'HTTP/1.1 404 Not Found') { - error_log('getDurationFromFile try 2, File (' . $videoFile . ') Not Found'); + error_log('getDurationFromFile try 2, File (' . $videoFile . ') Not Found original='.$file); $videoFile = ''; } }