From 62434bcedb44cc2f581efb243ffb461978cc78cf Mon Sep 17 00:00:00 2001 From: carodej Date: Sat, 16 May 2020 17:35:50 +0200 Subject: [PATCH] v1.5-alpha.7 --- app/Console/Commands/Deploy.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Console/Commands/Deploy.php b/app/Console/Commands/Deploy.php index 2ba18751..0076e93e 100644 --- a/app/Console/Commands/Deploy.php +++ b/app/Console/Commands/Deploy.php @@ -3,6 +3,7 @@ namespace App\Console\Commands; use Illuminate\Console\Command; +use Illuminate\Support\Facades\Log; class Deploy extends Command { @@ -49,6 +50,8 @@ class Deploy extends Command // Stop deployment $this->call('up'); $this->info('Everything is done, congratulations! 🥳🥳🥳'); + + Log::info('Application was updated!'); } /**