Skip to content
Snippets Groups Projects
Commit 310cb779 authored by Ere Maijala's avatar Ere Maijala Committed by Demian Katz
Browse files

Removed a couple of quite noisy debug messages from MultiBackend driver. (#943)

parent 3fdce7db
No related merge requests found
...@@ -1323,7 +1323,7 @@ class MultiBackend extends AbstractBase implements \Zend\Log\LoggerAwareInterfac ...@@ -1323,7 +1323,7 @@ class MultiBackend extends AbstractBase implements \Zend\Log\LoggerAwareInterfac
* *
* @param string $id The id to be split * @param string $id The id to be split
* *
* @return string Source * @return string Source
*/ */
protected function getSource($id) protected function getSource($id)
{ {
...@@ -1332,7 +1332,6 @@ class MultiBackend extends AbstractBase implements \Zend\Log\LoggerAwareInterfac ...@@ -1332,7 +1332,6 @@ class MultiBackend extends AbstractBase implements \Zend\Log\LoggerAwareInterfac
return substr($id, 0, $pos); return substr($id, 0, $pos);
} }
$this->debug("Could not find source id in '$id'");
return ''; return '';
} }
...@@ -1365,9 +1364,6 @@ class MultiBackend extends AbstractBase implements \Zend\Log\LoggerAwareInterfac ...@@ -1365,9 +1364,6 @@ class MultiBackend extends AbstractBase implements \Zend\Log\LoggerAwareInterfac
return $source; return $source;
} }
} }
$this->debug(
'Could not find source id in params: ' . print_r($params, true)
);
return ''; return '';
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment