1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* better UI error feedback

This commit is contained in:
Reinhard Pointner 2012-02-29 15:11:07 +00:00
parent 37570fce74
commit 59a44ea8ff

View File

@ -20,7 +20,6 @@ import java.util.List;
import java.util.Set;
import java.util.concurrent.CancellationException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.AbstractAction;
import javax.swing.Action;
@ -100,7 +99,7 @@ class ExtractTool extends Tool<TableModel> {
if (findCause(e, InterruptedException.class) != null) {
throw findCause(e, InterruptedException.class);
}
Logger.getLogger(getClass().getName()).log(Level.SEVERE, e.getMessage(), e);
UILogger.log(Level.WARNING, e.getMessage(), e);
}
}