mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2026-08-18 00:44:43 -05:00
trace core annotations dispatch
This commit is contained in:
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user