From: Roland Häder Date: Thu, 4 Oct 2012 18:34:20 +0000 (+0000) Subject: Commented out noisy debug lines X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=f9ea8181b9349ea6965f45f19fd4ba894d141eab;hp=f0d4f2a3e54ed578bd9cd9ef2b5c3bf2d509476b Commented out noisy debug lines --- diff --git a/inc/config-functions.php b/inc/config-functions.php index 84f442bb55..87c8e28d8b 100644 --- a/inc/config-functions.php +++ b/inc/config-functions.php @@ -276,7 +276,7 @@ function updateConfiguration ($entries, $values, $updateMode = '', $config = '0' // Do not update config in CSS mode if ((isCssOutputMode()) || (isRawOutputMode()) || (isInstallationPhase())) { // This logger line may be very noisy - /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Not updating configuration. entries[]=' . gettype($entries) . ',values[]=' . gettype($values) . ',updateMode=' . $updateMode . ',config=' . $config . ',isCssOutputMode()=' . intval(isCssOutputMode()) . ',isRawOutputMode()=' . intval(isRawOutputMode()) . ',isInstallationPhase()=' . intval(isInstallationPhase())); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Not updating configuration. entries[]=' . gettype($entries) . ',values[]=' . gettype($values) . ',updateMode=' . $updateMode . ',config=' . $config . ',isCssOutputMode()=' . intval(isCssOutputMode()) . ',isRawOutputMode()=' . intval(isRawOutputMode()) . ',isInstallationPhase()=' . intval(isInstallationPhase())); return; } // END - if diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index fda7b2a4c0..4079b8fef9 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -972,8 +972,8 @@ function getUserDataArray () { function isUserDataValid () { // User id should not be zero so abort here if (!isCurrentUserIdSet()) { - // Debug message - /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isCurrentUserIdSet()=false - ABORTING!'); + // Debug message, may be noisy + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isCurrentUserIdSet()=false - ABORTING!'); // Abort here return false; diff --git a/index.php b/index.php index 3e3caeed41..a07f405aa4 100644 --- a/index.php +++ b/index.php @@ -37,7 +37,7 @@ ************************************************************************/ // XDEBUG call -/* DEBUG: */ xdebug_start_trace(); +//* DEBUG: */ xdebug_start_trace(); // Load security stuff here require('inc/libs/security_functions.php');