report(formatted_html("info", info));
}
protected void code_trace() {
StackTraceElement[] trace_element = Thread.currentThread().getStackTrace();
Strings traces = Strings.new_instance();
if(trace_element != null) {
for(StackTraceElement element: trace_element) {
traces.add(element.toString());
}
}
report(formatted_html("action error", traces.toString()));
}