}
@Override
public synchronized Auditor getAuditor( String auditorName, String componentName, String serviceName ) {
String key = auditorName + componentName + serviceName;
Auditor auditor = auditors.get( key );
if( auditor == null ) {
auditor = new Log4jAuditor( auditorName, componentName, serviceName );
auditors.put( key, auditor );
}
return auditor;