From e632565ffdb474d298cc78645eb8330e4f9ccff5 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 15 Jan 2015 16:30:15 +0100 Subject: [PATCH] remove error_log --- developer_manual/app/tutorial.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/developer_manual/app/tutorial.rst b/developer_manual/app/tutorial.rst index a4ba475fa..5372cee75 100644 --- a/developer_manual/app/tutorial.rst +++ b/developer_manual/app/tutorial.rst @@ -479,8 +479,6 @@ Let's take the logic that was inside the controller and put it into a separate c public function find($id, $userId) { try { - error_log($id); - error_log($this->userId); return $this->mapper->find($id, $userId); // in order to be able to plug in different storage backends like files