From bf20a2f68736a412ac1c2aa5619e01cea2d71edc Mon Sep 17 00:00:00 2001
From: logmanoriginal <logmanoriginal@users.noreply.github.com>
Date: Sun, 4 Sep 2016 12:34:56 +0200
Subject: [PATCH] [Bridge] Remove uneccesary debug message

---
 lib/Bridge.php | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/lib/Bridge.php b/lib/Bridge.php
index f96e0117..91848440 100644
--- a/lib/Bridge.php
+++ b/lib/Bridge.php
@@ -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])){