Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INDIGO IAM v1.10.3 release #899

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Log lifecycle handlers start and end with INFO level
  • Loading branch information
enricovianello committed Dec 19, 2024
commit 8f068aa1156184191bb4e302b34e78b5a48e353d
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private void handleExpiredAccount(IamAccount expiredAccount) {

public void handleExpiredAccounts() {

LOG.debug("Expired accounts handler ... [START]");
LOG.info("Expired accounts handler ... [START]");

accountsScheduledForRemoval.clear();

Expand Down Expand Up @@ -221,7 +221,7 @@ public void handleExpiredAccounts() {
removeAccount(a);
}

LOG.debug("Expired accounts handler ... [END]");
LOG.info("Expired accounts handler ... [END]");

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private void expireIfActiveAndMember(IamAccount a) {
@Override
public void run() {

LOG.debug("CERN HR Lyfecycle handler ... [START]");
LOG.info("CERN HR Lyfecycle handler ... [START]");

Pageable pageRequest = PageRequest.of(0, cernProperties.getTask().getPageSize());

Expand All @@ -173,7 +173,7 @@ public void run() {
pageRequest = accountsPage.nextPageable();
}

LOG.debug("CERN HR Lyfecycle handler ... [END]");
LOG.info("CERN HR Lyfecycle handler ... [END]");
}

@Override
Expand Down
Loading