diff --git a/objects/Encoder.php b/objects/Encoder.php index b29cd8e91..b20d8a81a 100644 --- a/objects/Encoder.php +++ b/objects/Encoder.php @@ -1165,10 +1165,10 @@ static function getTitleFromLink($link) { $cmd = "LC_ALL=en_US.UTF-8 ". self::getYouTubeDLCommand() . " --no-playlist --force-ipv4 --skip-download -e \"{$link}\""; exec($cmd . " 2>&1", $output, $return_val); if ($return_val !== 0) { - error_log("Get Title Error: $cmd \n" . print_r($output, true)); + error_log("getTitleFromLink: Get Title Error: $cmd \n" . print_r($output, true)); return false; } else { - error_log("Get Title: $cmd \n" . print_r($output, true)); + error_log("getTitleFromLink: Get Title: $cmd \n" . print_r($output, true)); return end($output); } }