19 package org.sleuthkit.autopsy.coreutils;
 
   21 import java.awt.event.ActionEvent;
 
   22 import java.awt.event.ActionListener;
 
   23 import java.util.logging.Formatter;
 
   25 import java.util.logging.Level;
 
   30 final class TestLogger 
implements ActionListener {
 
   32     static final Logger logger = Logger.
getLogger(TestLogger.class.getName());
 
   36     public void actionPerformed(ActionEvent e) {
 
   38         logger.log(Level.WARNING, 
"Testing log!", 
new Exception(
new Exception(
new Exception(
new Exception(
"original reason with asdfasdfasdfasdfasd fasdfasdfasdf sdfasdfasdfa asdfasdf asdfa sdfas ", 
new Exception(
"more original reason")))))); 
 
synchronized static Logger getLogger(String name)