protected Map<String,Object> context;
public PanelActionTrace(Section section, Panel panel, String pAction) {
super(panel.getInstanceId().toString());
LocaleManager localeManager = LocaleManager.lookup();
context = new LinkedHashMap<String,Object>();
context.put("Workspace", localeManager.localize(section.getWorkspace().getTitle()));
context.put("Section", localeManager.localize(section.getTitle()));
context.put("Panel", localeManager.localize(panel.getInstance().getTitle()).toString());
context.put("Panel id.", panel.getPanelId().toString());
context.put("Panel driver", panel.getProvider().getDriver().getClass().getName());
context.put("Panel action", pAction);
ThreadProfile threadProfile = Profiler.lookup().getCurrentThreadProfile();