From cbbadc3d6d382a17c53bab76ed035d41bf0264dd Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 27 Dec 2016 15:54:49 +0100 Subject: [PATCH] Less logging in often used class. --- app/Support/FireflyConfig.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/Support/FireflyConfig.php b/app/Support/FireflyConfig.php index 18f8754b55..743dc40c2a 100644 --- a/app/Support/FireflyConfig.php +++ b/app/Support/FireflyConfig.php @@ -58,22 +58,15 @@ class FireflyConfig if ($config) { Cache::forever($fullName, $config); - Log::debug('Return found one.'); return $config; } // no preference found and default is null: if (is_null($default)) { - // return NULL - Log::debug('Return null.'); - return null; } - Log::debug('Return this->set().'); - return $this->set($name, $default); - } /**