Skip to content

Commit

Permalink
Merge pull request #36 from quarkiverse/feature/improve-logging-message
Browse files Browse the repository at this point in the history
Added the uri info for failed CER processes
  • Loading branch information
eddiecarpenter authored Sep 13, 2024
2 parents d95b0c4 + ced509b commit a0fcd60
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ public int processCerMessage(String key, IMessage message)
Set<ApplicationId> newAppId = getCommonApplicationIds(message);
if (newAppId.isEmpty()) {
if (logger.isWarnEnabled()) {
logger.warn("Processing CER failed, no common application. Message AppIds [{}]",
logger.warn("Processing CER failed for [{}], no common application. Message AppIds [{}]",
getUri(),
message.getApplicationIdAvps());
}
return ResultCode.NO_COMMON_APPLICATION;
Expand Down

0 comments on commit a0fcd60

Please sign in to comment.