*/
public void printProfileSummaryByClass() {
if (!this.getUsesEclipseLinkProfiling().booleanValue()) {
return;
}
PerformanceProfiler performanceProfiler = (PerformanceProfiler)getSession().getProfiler();
//trim the { and } from the beginning at end, because they cause problems for the logger
getSession().getSessionLog().info(trimProfileString(performanceProfiler.buildProfileSummaryByClass().toString()));
}