[Bridge] Remove uneccesary debug message

This commit is contained in:
logmanoriginal 2016-09-04 12:34:56 +02:00
parent 51a3a75aac
commit bf20a2f687

View file

@ -601,10 +601,9 @@ abstract class RssExpander extends HttpCachingBridgeAbstract {
/* Notice we do not use cache here on purpose:
* we want a fresh view of the RSS stream each time
*/
$content = $this->getContents($url) or $this->returnServerError('Could not request ' . $url);
$content = $this->getContents($url)
or $this->returnServerError('Could not request ' . $url);
$rssContent = simplexml_load_string($content);
$this->debugMessage('loaded RSS from ' . $url);
$this->debugMessage('Detecting feed format/version');
if(isset($rssContent->channel[0])){