diff --git a/lib/PayPal/Core/PayPalLoggingManager.php b/lib/PayPal/Core/PayPalLoggingManager.php index 90521a89..076b02a1 100644 --- a/lib/PayPal/Core/PayPalLoggingManager.php +++ b/lib/PayPal/Core/PayPalLoggingManager.php @@ -110,10 +110,6 @@ public function fine($message) */ public function debug($message) { - $config = PayPalConfigManager::getInstance()->getConfigHashmap(); - // Disable debug in live mode. - if (array_key_exists('mode', $config) && $config['mode'] != 'live') { - $this->logger->debug($message); - } + $this->logger->debug($message); } }