Al Dispennette commented on Bug LBAUDIT-5

to make this work I did the following:

	private void writeToAuditLog(Object message,Status status){
		logger.info("{} {}",status.getName(),message);
		try {
			try{
				AuditorFactory.setApplicationName(getClass().getSimpleName());
			}catch(AuditException e){
				//ignore
			}
			AuditorFactory.configureByResource(AuditorFactory.getAuditor(), Loader.getResource("logback-audit.xml", getClass().getClassLoader()));
			new AuditorFacade(message.getClass().getSimpleName(), status.getName(), message.toString()).audit();
		} catch (AuditException e) {
			logger.error("",e);
		}
	}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira