in src/main/java/org/apache/cassandra/distributed/api/NodeToolResult.java [230:240]
private static String toString(Notification notification)
{
ProgressEventType type = ProgressEventType.values()[notificationType(notification)];
String msg = notification.getMessage();
Object src = notification.getSource();
return "Notification{" +
"type=" + type +
", src=" + src +
", message=" + msg +
"}";
}