Eccube\EventListener\RequestDumpListener::removeExcludeKey PHP Method

removeExcludeKey() protected method

ログ出力を除外するキーを削除します.
protected removeExcludeKey ( string $key )
$key string 削除対象のキー
    protected function removeExcludeKey($key)
    {
        if (array_key_exists($key, $this->excludeKeys)) {
            unset($this->excludeKeys[$key]);
        }
    }