Skip to content

Commit

Permalink
UPSServiceEJB logger: decrease logging level on UPS on Store from INF…
Browse files Browse the repository at this point in the history
…O to DEBUG fix #2809
  • Loading branch information
gunterze committed Oct 2, 2020
1 parent 94d4584 commit 6ce543c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ private static void supplementDiscontinuationReasonCode(Attributes attrs) {
}

public UPS createOrUpdateOnStore(StoreContext ctx, Calendar now, UPSOnStore rule) {
LOG.info("{}: Apply {}", ctx.getStoreSession(), rule);
LOG.debug("{}: Apply {}", ctx.getStoreSession(), rule);
String iuid = rule.getInstanceUID(ctx.getAttributes());
try {
UPS ups = findUPS(iuid);
Expand All @@ -748,7 +748,7 @@ public UPS createOrUpdateOnStore(StoreContext ctx, Calendar now, UPSOnStore rule
if (ups.getProcedureStepState() == UPSState.SCHEDULED) break;
case SINGLE:
case NO:
LOG.info("{}: {} already exists", ctx.getStoreSession(), ups);
LOG.debug("{}: {} already exists", ctx.getStoreSession(), ups);
return null;
default:
while (includeInputInformation == UPSOnStore.IncludeInputInformation.SINGLE_OR_CREATE
Expand Down

0 comments on commit 6ce543c

Please sign in to comment.