1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 07:14:38 +02:00

Update src/main/java/com/rarchives/ripme/ripper/rippers/RedditRipper.java

Add debug logging for score filtering
This commit is contained in:
Gamerick
2019-02-10 14:31:28 +00:00
committed by GitHub
parent 559de3b5fd
commit c683a0b249

View File

@@ -173,6 +173,8 @@ public class RedditRipper extends AlbumRipper {
if (score > maxScore || score < minScore) {
String message = "Skipping post with score outside specified range of " + minScore + " to " + maxScore;
LOGGER.debug(message);
return; //Outside specified range, do not download
}
}