From e5736c822dc7eeb2f29b6181de50b53b6f15762a Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 2 May 2021 06:40:36 +0200 Subject: [PATCH] Warn, not info. --- app/Console/Commands/Upgrade/BackToJournals.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Upgrade/BackToJournals.php b/app/Console/Commands/Upgrade/BackToJournals.php index 4de0bd1eed..358452af1f 100644 --- a/app/Console/Commands/Upgrade/BackToJournals.php +++ b/app/Console/Commands/Upgrade/BackToJournals.php @@ -64,7 +64,7 @@ class BackToJournals extends Command $this->error('Please run firefly-iii:migrate-to-groups first.'); } if ($this->isExecuted() && true !== $this->option('force')) { - $this->info('This command has already been executed.'); + $this->warn('This command has already been executed.'); return 0; }