From 39821f6c4a14ea1be1ec182d480692aa819d8fe4 Mon Sep 17 00:00:00 2001 From: Michael J Rubinsky Date: Tue, 1 Apr 2014 16:50:21 -0400 Subject: [PATCH] Remove Core specific logging from framework package. --- .../lib/Horde/Service/Weather/WeatherUnderground.php | 1 - framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php | 1 - 2 files changed, 2 deletions(-) diff --git a/framework/Service_Weather/lib/Horde/Service/Weather/WeatherUnderground.php b/framework/Service_Weather/lib/Horde/Service/Weather/WeatherUnderground.php index 179efb8bbdb..c06ce06c99d 100644 --- a/framework/Service_Weather/lib/Horde/Service/Weather/WeatherUnderground.php +++ b/framework/Service_Weather/lib/Horde/Service/Weather/WeatherUnderground.php @@ -369,7 +369,6 @@ protected function _makeRequest($url, $lifetime = 86400) $url = new Horde_Url($url); $response = $this->_http->get($url); if (!$response->code == '200') { - Horde::log($response->getBody()); throw new Horde_Service_Weather_Exception($response->code); } $results = $response->getBody(); diff --git a/framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php b/framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php index 44ac1895e3c..032505d0304 100644 --- a/framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php +++ b/framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php @@ -341,7 +341,6 @@ protected function _makeRequest(Horde_Url $url) empty($this->_cache)) { $response = $this->_http->get($url); if (!$response->code == '200') { - Horde::log($response->getBody()); throw new Horde_Service_Weather_Exception($response->code); } $results = $response->getBody();