]> git.mxchange.org Git - friendica.git/commitdiff
Debug message removed
authorMichael <heluecht@pirati.ca>
Sun, 22 Jan 2023 13:58:28 +0000 (13:58 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 22 Jan 2023 13:58:28 +0000 (13:58 +0000)
src/Core/Config/Model/Config.php

index 0a242c858748264806c509b1d59ab000cd6665ed..46d5643b344bc66e4538b693b17bc400bcba296f 100644 (file)
@@ -27,8 +27,6 @@ use Friendica\Core\Config\Exception\ConfigFileException;
 use Friendica\Core\Config\Exception\ConfigPersistenceException;
 use Friendica\Core\Config\Util\ConfigFileManager;
 use Friendica\Core\Config\ValueObject\Cache;
-use Friendica\Core\Logger;
-use Friendica\Core\System;
 
 /**
  * Configuration model, which manages the whole system configuration
@@ -120,7 +118,6 @@ class Config implements IManageConfigValues
        /** {@inheritDoc} */
        public function set(string $cat, string $key, $value): bool
        {
-               Logger::debug('Set config value', ['cat' => $cat, 'key' => $key, 'value' => $value, 'callstack' => System::callstack(20)]);
                if ($this->configCache->set($cat, $key, $value, Cache::SOURCE_DATA)) {
                        $this->save();
                        return true;