From c815aa5bfc5d3723785b0d8dc480e0711386bf0c Mon Sep 17 00:00:00 2001 From: FelixSFD Date: Fri, 30 Mar 2018 12:47:42 +0200 Subject: [PATCH] - use System.out instead of LOGGER to debug the CP issue --- src/main/java/org/sobotics/guttenberg/utils/PostUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/sobotics/guttenberg/utils/PostUtils.java b/src/main/java/org/sobotics/guttenberg/utils/PostUtils.java index 61c8268..9962402 100644 --- a/src/main/java/org/sobotics/guttenberg/utils/PostUtils.java +++ b/src/main/java/org/sobotics/guttenberg/utils/PostUtils.java @@ -248,7 +248,7 @@ public static String storeReport(PostMatch match) throws IOException { "score", ""+match.getTotalScore(), "reasons", match.getCopyPastorReasonString()); - LOGGER.debug(match.getCopyPastorReasonString()); + System.out.println(match.getCopyPastorReasonString()); return prop.getProperty("copypastor_url", "http://localhost:5000") + "/posts/" + output.get("post_id").getAsString(); }