Skip to content

Commit

Permalink
issue #1708 removed excess debug logging
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Arnold <robin.arnold23@ibm.com>
  • Loading branch information
punktilious committed Nov 23, 2020
1 parent cca3d4a commit 74a6142
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2208,8 +2208,6 @@ public static Map<String, Set<CompartmentReference>> extractCompartmentParameter
for (Map.Entry<String, Set<String>> paramEntry : compartmentRefParams.entrySet()) {
final String searchParm = paramEntry.getKey();

log.finest("searchParam = [" + resourceType + "] '" + searchParm + "'");

// Ignore {def} which is used in the compartment definition where
// no other search parm is given (e.g. Encounter->Encounter).
if (!COMPARTMENT_PARM_DEF.equals(searchParm)) {
Expand All @@ -2231,7 +2229,6 @@ public static Map<String, Set<CompartmentReference>> extractCompartmentParameter
Reference reference = node.asElementNode().element().as(Reference.class);
ReferenceValue rv = ReferenceUtil.createReferenceValueFrom(reference, baseUrl);
if (rv.getType() != ReferenceType.DISPLAY_ONLY && rv.getType() != ReferenceType.INVALID) {
log.finest("reference value = [" + rv.getTargetResourceType() + "] '" + rv.getValue() + "'");

// Check that the target resource type of the reference matches one of the
// target resource types in the compartment definition.
Expand Down

0 comments on commit 74a6142

Please sign in to comment.