From 45950312f77ddb886c7f871579c7ada65cc59d6c Mon Sep 17 00:00:00 2001 From: "B. Endres" Date: Wed, 9 Jun 2021 16:47:30 +0200 Subject: [PATCH] [#52] don't use PEAR error logging --- proxy/libs/Cache/Lite.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/proxy/libs/Cache/Lite.php b/proxy/libs/Cache/Lite.php index 18e6b83..e319385 100644 --- a/proxy/libs/Cache/Lite.php +++ b/proxy/libs/Cache/Lite.php @@ -564,8 +564,7 @@ class Cache_Lite */ function raiseError($msg, $code) { - include_once('PEAR.php'); - return PEAR::raiseError($msg, $code, $this->_pearErrorMode); + error_log("[code] $msg"); } /**