Skip to content

Commit

Permalink
fix: Remove unnecessary console log
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPalafox committed Nov 22, 2023
1 parent 1d872f9 commit 36c3567
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -856,8 +856,6 @@ public List<Pair<String, String>> findEmailsToSendAddWorksEmail() {
qs.append(getWorkCreatedNumberOfDaysAgo("90"));
qs.append("GROUP BY e.email, p.orcid");

System.out.println(qs.toString());

Query query = entityManager.createNativeQuery(qs.toString());
List<Object[]> dbInfo = query.getResultList();
List<Pair<String, String>> results = new ArrayList<Pair<String, String>>();
Expand Down

0 comments on commit 36c3567

Please sign in to comment.