From f920a11ae99421b4b3f139a9f701a860545743eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Wed, 7 May 2014 17:46:19 +0200 Subject: [PATCH] improved error handling code --- application/core/ManiaControl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/ManiaControl.php b/application/core/ManiaControl.php index 1315eccd..957b3d7d 100644 --- a/application/core/ManiaControl.php +++ b/application/core/ManiaControl.php @@ -296,7 +296,7 @@ class ManiaControl implements CommandListener, TimerListener { // Close the client connection $this->client->delete($this->server->ip, $this->server->port); } catch (TransportException $e) { - $this->errorHandler->triggerDebugNotice($e->getMessage() . " File: " . $e->getFile() . " Line: " . $e->getLine()); + $this->errorHandler->handleException($e, false); } }