mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
trace core annotations dispatch
This commit is contained in:
parent
a06be5fcc9
commit
23a1eb8822
@ -96,7 +96,10 @@ public class Annotators {
|
||||
}
|
||||
|
||||
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(
|
||||
|
Loading…
Reference in New Issue
Block a user