diff --git a/app/Services/AppointmentService.php b/app/Services/AppointmentService.php index e5a6a65..b4a1382 100644 --- a/app/Services/AppointmentService.php +++ b/app/Services/AppointmentService.php @@ -73,7 +73,11 @@ class AppointmentService $application->setStatus('STAGE_INTERVIEW'); - Log::info('User '.Auth::user()->name.' cancelled an appointment with '.$application->user->name.' for application ID'.$application->id); + Log::info('An interview appointment has just been cancelled.', [ + 'actor' => Auth::user()->name, + 'applicant' => $application->user->name, + 'reason' => $reason + ]); return true; }