diff --git a/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java b/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java index 364b98a8..be70fd6a 100644 --- a/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java +++ b/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java @@ -43,7 +43,7 @@ public AuditService(AuditRepository auditRepository) { public Page getAllAuditLogs(Pageable pageable, String email, String userId, List auditActions, String filterDate) { - // If user provenance id is supplied then find by an exact match + // If user id is supplied then find by an exact match String userIdToQuery = "%%"; if (!userId.isBlank()) { userIdToQuery = userId;