private void run(List<Action> actions, Json json) throws IOException {
LoggingService loggingService = Aura.getLoggingService();
AuraContext context = Aura.getContextService().getCurrentContext();
for (Action action : actions) {
StringBuffer actionAndParams = new StringBuffer(action.getDescriptor().getQualifiedName());
KeyValueLogger logger = loggingService.getKeyValueLogger(actionAndParams);
if (logger != null) {
action.logParams(logger);
}
String aap = actionAndParams.toString();
loggingService.startAction(aap);