diff --git a/core/src/main/java/bisq/core/filter/PaymentAccountFilter.java b/core/src/main/java/bisq/core/filter/PaymentAccountFilter.java index 0e8dca0f7f..29766a5d27 100644 --- a/core/src/main/java/bisq/core/filter/PaymentAccountFilter.java +++ b/core/src/main/java/bisq/core/filter/PaymentAccountFilter.java @@ -49,4 +49,14 @@ public class PaymentAccountFilter implements NetworkPayload { proto.getGetMethodName(), proto.getValue()); } + + @Override + public String toString() { + return "PaymentAccountFilter{" + + "paymentMethodId='" + paymentMethodId + '\'' + + ", getMethodName='" + getMethodName + '\'' + + /* ", value='" + value + '\'' +*/ + ", value='" + "[HIDDEN]" + '\'' + + '}'; + } }