diff --git a/app/Console/Commands/Integrity/RestoreOAuthKeys.php b/app/Console/Commands/Integrity/RestoreOAuthKeys.php index ad7fe3fb42..2c90bd9932 100644 --- a/app/Console/Commands/Integrity/RestoreOAuthKeys.php +++ b/app/Console/Commands/Integrity/RestoreOAuthKeys.php @@ -24,6 +24,7 @@ namespace FireflyIII\Console\Commands\Integrity; use FireflyIII\Support\System\OAuthKeys; use Illuminate\Console\Command; +use Log; /** * Class RestoreOAuthKeys @@ -93,7 +94,9 @@ class RestoreOAuthKeys extends Command */ private function restoreOAuthKeys(): void { + Log::debug('Going to restoreOAuthKeys()'); if (!$this->keysInDatabase() && !$this->keysOnDrive()) { + Log::debug('Keys are not in DB and keys are not on the drive.'); $this->generateKeys(); $this->storeKeysInDB(); $this->line('Generated and stored new keys.'); @@ -101,12 +104,14 @@ class RestoreOAuthKeys extends Command return; } if ($this->keysInDatabase() && !$this->keysOnDrive()) { + Log::debug('Keys are in DB and keys are not on the drive. Restore.'); $this->restoreKeysFromDB(); $this->line('Restored OAuth keys from database.'); return; } if (!$this->keysInDatabase() && $this->keysOnDrive()) { + Log::debug('Keys are not in DB and keys are on the drive. Save in DB.'); $this->storeKeysInDB(); $this->line('Stored OAuth keys in database.');