diff options
author | Jorge Hernandez <jorge.hernandez-herrero@att.com> | 2021-09-03 22:00:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-09-03 22:00:16 +0000 |
commit | f12d4c9f2d7229408708230932a227a05668902b (patch) | |
tree | 550cceb08a8420001bfa0fb985dfb11a52e631ed | |
parent | be601e6cbfe509d02741d33add13ff1774c86245 (diff) | |
parent | 3557b257aaf8f260956458993a678b88a062068b (diff) |
Merge "Reduce coder verbosity in logs"
-rw-r--r-- | policy-management/src/main/java/org/onap/policy/drools/protocol/coders/GenericEventProtocolCoder.java | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/policy-management/src/main/java/org/onap/policy/drools/protocol/coders/GenericEventProtocolCoder.java b/policy-management/src/main/java/org/onap/policy/drools/protocol/coders/GenericEventProtocolCoder.java index 8c734d52..0729c706 100644 --- a/policy-management/src/main/java/org/onap/policy/drools/protocol/coders/GenericEventProtocolCoder.java +++ b/policy-management/src/main/java/org/onap/policy/drools/protocol/coders/GenericEventProtocolCoder.java @@ -27,7 +27,6 @@ import java.util.List; import java.util.Map; import lombok.AccessLevel; import lombok.NoArgsConstructor; -import lombok.ToString; import org.onap.policy.drools.controller.DroolsController; import org.onap.policy.drools.controller.DroolsControllerConstants; import org.onap.policy.drools.protocol.coders.EventProtocolCoder.CoderFilters; @@ -38,7 +37,6 @@ import org.slf4j.LoggerFactory; * This protocol Coder that does its best attempt to decode/encode, selecting the best class and best fitted json * parsing tools. */ -@ToString @NoArgsConstructor(access = AccessLevel.PROTECTED) abstract class GenericEventProtocolCoder { private static final String INVALID_ARTIFACT_ID_MSG = "Invalid artifact id"; @@ -720,4 +718,17 @@ abstract class GenericEventProtocolCoder { } return droolsControllers; } + + /* + * Note: this only logs the KEYSETS, thus lombok ToString annotation is not used. + * Otherwise, it results in too much verbosity. + */ + @Override + public String toString() { + return "GenericEventProtocolCoder [coders=" + + coders.keySet() + + ", reverseCoders=" + + reverseCoders.keySet() + + "]"; + } } |