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

Post skipping message now writes to the UI log instead of to the file log

This commit is contained in:
Jacob Brown
2019-03-02 18:28:00 +00:00
parent 27fb290d02
commit 708d0977fc

View File

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