From 28ea1c7f33e3076486f99bdedcb81d305113235e Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Wed, 13 May 2015 09:10:22 -0500
Subject: [PATCH] memcache: Emit warn if `memcache` ext missing

---
 include/class.ostsession.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/class.ostsession.php b/include/class.ostsession.php
index 0b372f291..d93de839a 100644
--- a/include/class.ostsession.php
+++ b/include/class.ostsession.php
@@ -66,6 +66,7 @@ class osTicketSession {
         }
         catch (Exception $x) {
             // Use the database for sessions
+            trigger_error($x->getMessage(), E_USER_WARNING);
             $this->backend = new self::$backends['db']($this->ttl);
         }
 
-- 
GitLab