((TestLoggingAdapter) adapter).beginCapture();
}
@AuraEnabled
public static List<Map<String, Object>> endCapture() {
LoggingAdapter adapter = Aura.get(LoggingAdapter.class);
if (!(adapter instanceof TestLoggingAdapter)) {
throw new Error("TestLoggingAdapter not configured!");
}
((TestLoggingAdapter) adapter).endCapture();
return ((TestLoggingAdapter) adapter).getLogs();