We are adding extended information when logging handled exceptions with Mint as explained in the docs:
public void dostuff() {
try {
String a = null;
a.toString();
} catch(NullPointerException ex) {
ex.printStackTrace();
Mint.logException("level", "second level", ex);
}
}
But we cannot find a way of looking at that information on the Dashboard:
Where can we find this information on the site?