aboutsummaryrefslogtreecommitdiffstats
path: root/include/dba
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-31 16:16:54 -0700
committerredmatrix <git@macgirvin.com>2016-05-31 16:16:54 -0700
commit00b4843425371e4ff55c82be577a279e248c29fc (patch)
tree8294725983c67e3eb82314a127ac646b88a222eb /include/dba
parent701acf59e2b2264f7afec9fdfab4d554193fd0b3 (diff)
downloadvolse-hubzilla-00b4843425371e4ff55c82be577a279e248c29fc.tar.gz
volse-hubzilla-00b4843425371e4ff55c82be577a279e248c29fc.tar.bz2
volse-hubzilla-00b4843425371e4ff55c82be577a279e248c29fc.zip
provide a sort of mutex lock around db logging so it can't possibly recurse. Previous attempts to do something similar using other methods haven't worked out satisfactorily.
Diffstat (limited to 'include/dba')
-rwxr-xr-xinclude/dba/dba_driver.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php
index 0ab5830ed..df072ed76 100755
--- a/include/dba/dba_driver.php
+++ b/include/dba/dba_driver.php
@@ -12,7 +12,7 @@ class DBA {
static public $dba = null;
static public $dbtype = null;
-
+ static public $logging = false;
/**
* @brief Returns the database driver object.
@@ -421,8 +421,13 @@ function db_getfunc($f) {
function db_logger($s,$level = LOGGER_NORMAL,$syslog = LOG_INFO) {
+ if(\DBA::$logging)
+ return;
+
$saved = \DBA::$dba->debug;
\DBA::$dba->debug = false;
+ \DBA::$logging = true;
logger($s,$level,$syslog);
+ \DBA::$logging = false;
\DBA::$dba->debug = $saved;
} \ No newline at end of file