From 4066124dff02f330749cc259e6eff50046497545 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 15 Aug 2013 18:05:40 +0000 Subject: [PATCH] * fix AMC-BASELINE tests => Smash (2012) --- source/net/sourceforge/filebot/cli/CmdlineOperations.java | 2 +- source/net/sourceforge/filebot/web/TMDbClient.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/sourceforge/filebot/cli/CmdlineOperations.java b/source/net/sourceforge/filebot/cli/CmdlineOperations.java index 17a6c1ee..fb2e574d 100644 --- a/source/net/sourceforge/filebot/cli/CmdlineOperations.java +++ b/source/net/sourceforge/filebot/cli/CmdlineOperations.java @@ -940,7 +940,7 @@ public class CmdlineOperations implements CmdlineInterface { } // return first and only value - return probableMatches.size() <= 3 ? probableMatches : probableMatches.subList(0, 3); // trust that the correct match is in the Top 3 + return probableMatches.size() <= 5 ? probableMatches : probableMatches.subList(0, 5); // trust that the correct match is in the Top 3 } diff --git a/source/net/sourceforge/filebot/web/TMDbClient.java b/source/net/sourceforge/filebot/web/TMDbClient.java index 550eb8b2..a196b8a6 100644 --- a/source/net/sourceforge/filebot/web/TMDbClient.java +++ b/source/net/sourceforge/filebot/web/TMDbClient.java @@ -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.WARNING, String.format("Ignore movie [%s]: %s", title, e.getMessage())); + Logger.getLogger(TMDbClient.class.getName()).log(Level.FINE, String.format("Ignore movie [%s]: %s", title, e.getMessage())); } } return result;