* @throws InterruptedException the interrupted exception
*/
public static void main(String[] args) throws InterruptedException {
final Stopwatch stopwatch = Audits.getBasicStopwatch(BASIC_STOPWATCH_ID);
stopwatch.setShouldReset(false);
stopwatch.setRemovalListener(new AuditRemovalListener() {
public void onRemoval(AuditEvent auditEvent) {
System.out.println(auditEvent);
}
});
Audits.unmapAudit(stopwatch);