Skip to content

Commit

Permalink
Remove extra logging, and fix error thrown during test in process.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed May 14, 2015
1 parent 2a6ea6b commit 30526f0
Showing 1 changed file with 1 addition and 7 deletions.
Expand Up @@ -163,6 +163,7 @@ public function create(&$object, $raw = false)
sprintf('Creating new data object in %s.', $this->_data->getPath())
);
$result = $this->_data->create($object, $raw);

$this->_logger->debug(
sprintf(
'Created data object %s in %s [backend: %s].',
Expand All @@ -188,13 +189,6 @@ public function create(&$object, $raw = false)
*/
public function modify($object, $raw = false)
{
$this->_logger->debug(
sprintf(
'Modifying data object %s in %s.',
$object['uid'],
$this->_data->getPath()
)
);
$this->_data->modify($object, $raw);
$this->_logger->debug(
sprintf(
Expand Down

0 comments on commit 30526f0

Please sign in to comment.