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

* more debug output just in case

This commit is contained in:
Reinhard Pointner 2011-12-09 08:25:36 +00:00
parent c2bfedd978
commit c7a518ae93

View File

@ -33,6 +33,7 @@ public abstract class TransferablePolicy {
// just assume that the transferable will be accepted, accept will be called in importData again anyway
return true;
} catch (Exception e) {
Logger.getLogger(getClass().getName()).log(Level.WARNING, e.toString(), e);
return false;
}
}