Skip to content

Commit

Permalink
Remove Core specific logging from framework package.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Apr 2, 2014
1 parent 3c78254 commit 39821f6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Expand Up @@ -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();
Expand Down
Expand Up @@ -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();
Expand Down

0 comments on commit 39821f6

Please sign in to comment.