Skip to content

Commit

Permalink
NOISS remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
c0repwn3r committed Nov 16, 2024
1 parent 5750830 commit ee41374
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/Http/Controllers/ControllerDash.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,16 +182,13 @@ public function showProfile($year = null, $month = null) {
);

if ($res->getStatusCode() == "200") {
Log::info($res->getBody());
$appointments = json_decode($res->getBody());
$appointments_successful = true;
}
} catch (\GuzzleHttp\Exception\ClientException $e) {
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);
Expand Down

0 comments on commit ee41374

Please sign in to comment.