From ee4137422e6c91765cee0d287b1402b98ee41edd Mon Sep 17 00:00:00 2001 From: core Date: Mon, 11 Nov 2024 12:41:02 -0500 Subject: [PATCH] NOISS remove debug logging --- app/Http/Controllers/ControllerDash.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/Http/Controllers/ControllerDash.php b/app/Http/Controllers/ControllerDash.php index 6489b448..24ebc706 100644 --- a/app/Http/Controllers/ControllerDash.php +++ b/app/Http/Controllers/ControllerDash.php @@ -182,7 +182,6 @@ public function showProfile($year = null, $month = null) { ); if ($res->getStatusCode() == "200") { - Log::info($res->getBody()); $appointments = json_decode($res->getBody()); $appointments_successful = true; } @@ -190,8 +189,6 @@ public function showProfile($year = null, $month = null) { Log::error($e); } - Log::info($appointments); - return view('dashboard.controllers.profile')->with('personal_stats', $personal_stats)->with('feedback', $feedback) ->with('training_feedback', $training_feedback)->with('tickets', $tickets)->with('last_training', $last_training) ->with('last_training_given', $last_training_given)->with('appointments', $appointments)->with('appointments_successful', $appointments_successful);