agoncharuk commented on a change in pull request #7984:
URL: https://github.com/apache/ignite/pull/7984#discussion_r524310015
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/util/tostring/GridToStringBuilder.java
##########
@@ -1678,6 +1678,51 @@ public static String toString(String str,
}
}
+ /**
+ * Produces uniformed output of string with context properties
+ *
+ * @param str Output prefix or {@code null} if empty.
+ * @param triplets Triplets {@code {name, value, sencitivity}}.
+ * @return String presentation.
+ */
+ public static String toString(String str, Object... triplets) {
+ assert triplets.length % 3 == 0;
Review comment:
Looks like this should be an exception
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]