Skip to content

Commit

Permalink
- use System.out instead of LOGGER to debug the CP issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixSFD committed Mar 30, 2018
1 parent 839026a commit c815aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/sobotics/guttenberg/utils/PostUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit c815aa5

Please sign in to comment.