trace core annotations dispatch

This commit is contained in:
Jonathan Shook 2020-12-07 01:50:10 -06:00
parent a06be5fcc9
commit 23a1eb8822

View File

@ -96,7 +96,10 @@ public class Annotators {
} }
public static synchronized void recordAnnotation(Annotation annotation) { public static synchronized void recordAnnotation(Annotation annotation) {
getAnnotators().forEach(a -> a.recordAnnotation(annotation)); for (Annotator annotator : getAnnotators()) {
logger.trace("calling annotator " + annotator.getName());
annotator.recordAnnotation(annotation);
}
} }
// public static synchronized void recordAnnotation( // public static synchronized void recordAnnotation(