Get ready to use VSCode IDE

This commit is contained in:
2024-11-15 13:44:27 -07:00
parent 08fcd985ea
commit 2d14254816
12 changed files with 923 additions and 3 deletions

View File

@ -93,10 +93,11 @@ public class CertificationTrainingGroupWorker : IJob {
_logger.LogInformation($"Processing cert record {{{record}}}");
if (record is not null) {
User user = null;
User? user;
try {
user = await _userService.GetUserByEmail(record.Email);
} catch (Exception ex) {
user = null;
StringBuilder errMsgBuilder = new();
errMsgBuilder.Append($"An exception occurred when attempting to get user for email {record.Email}. ");
errMsgBuilder.Append($"Exception: {ex.Message}");