Skip to content

Commit

Permalink
add throwable messages to emails
Browse files Browse the repository at this point in the history
  • Loading branch information
my-curiosity committed Oct 9, 2024
1 parent 076da42 commit 76e5169
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions classes/task/archive_user_task.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ private function change_user_deprovisionstatus($userarray, $intention) {
} catch (\Throwable $e) {
$failures[$key] = $user->id;
$messages .= "\n Could not " . $intention . " " . $user->username;
$messages .= "\n Caught throwable: " . $e->getMessage();
}
}
}
Expand Down

0 comments on commit 76e5169

Please sign in to comment.