For example, for this assertion -
aString = "stack overflow"; another string = "stack";
assertThat(aString).startsWith(anotherString);
is it possible to add a logger like this -
assertThat(aString ["stack overflow"]).startsWith(another strong ["stack"])
..or something similar. I'm interested in logging the type of assertions and the name and current values of fields under assertion implicitly.