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

Make sure "WARNING: Owner failed to convert data" doesn't fill up the error.log with useless messages that seem to happen all the time, don't matter, and are just confusing for new users.

This commit is contained in:
Reinhard Pointner 2019-02-17 18:39:21 +07:00
parent c9c4e84ee4
commit 5cec6f5162

View File

@ -29,7 +29,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) {
debug.log(Level.WARNING, e.getMessage(), e);
debug.log(Level.FINEST, e, e::getMessage);
return false;
}
}
@ -43,7 +43,7 @@ public abstract class TransferablePolicy {
return true;
}
} catch (Exception e) {
debug.log(Level.WARNING, e.getMessage(), e);
debug.log(Level.WARNING, e, e::getMessage);
}
// transferable was not accepted, or transfer failed