* make sure to print proper warnings if filebot straight-out ignores certain movies because of insufficient data available

This commit is contained in:
Reinhard Pointner 2013-08-12 08:38:00 +00:00
parent 09d2dc24af
commit 0341ba3608
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class TMDbClient implements MovieIdentificationService {
}
result.add(new Movie(title, year, -1, (int) id));
} catch (Exception e) {
Logger.getLogger(TMDbClient.class.getName()).log(Level.FINE, String.format("Ignore movie [%s]: %s", title, e.getMessage()));
Logger.getLogger(TMDbClient.class.getName()).log(Level.WARNING, String.format("Ignore movie [%s]: %s", title, e.getMessage()));
}
}
return result;