diff --git a/source/net/filebot/cli/CmdlineOperations.java b/source/net/filebot/cli/CmdlineOperations.java index aa2c607c..8bc015df 100644 --- a/source/net/filebot/cli/CmdlineOperations.java +++ b/source/net/filebot/cli/CmdlineOperations.java @@ -327,7 +327,7 @@ public class CmdlineOperations implements CmdlineInterface { try { Map hashLookup = service.getMovieDescriptors(movieFiles, locale); if (hashLookup.size() > 0) { - CLILogger.finest(format("Looking up up movie by filehash via [%s]", service.getName())); + CLILogger.finest(format("Looking up up movie by hash via [%s]", service.getName())); movieByFile.putAll(hashLookup); } Analytics.trackEvent(service.getName(), "HashLookup", "Movie", hashLookup.size()); // number of positive hash lookups @@ -677,7 +677,7 @@ public class CmdlineOperations implements CmdlineInterface { } try { - CLILogger.fine("Looking up subtitles by filehash via " + service.getName()); + CLILogger.fine("Looking up subtitles by hash via " + service.getName()); Map subtitles = lookupSubtitleByHash(service, language, remainingVideos); Map downloads = downloadSubtitleBatch(service.getName(), subtitles, outputFormat, outputEncoding, naming); remainingVideos.removeAll(downloads.keySet()); @@ -829,7 +829,7 @@ public class CmdlineOperations implements CmdlineInterface { SubtitleDescriptor bestMatch = getBestMatch(it.getKey(), it.getValue(), false); if (bestMatch != null) { - CLILogger.finest(format("Matched [%s] to [%s] via filehash", it.getKey().getName(), bestMatch.getName())); + CLILogger.finest(format("Matched [%s] to [%s] via hash", it.getKey().getName(), bestMatch.getName())); subtitleByVideo.put(it.getKey(), bestMatch); } }