Skip to content

Commit 5ea0291

Browse files
committed
Fixed the error log message.
1 parent 08c90a5 commit 5ea0291

File tree

1 file changed

+2
-2
lines changed
  • server/src/main/java/com/objectcomputing/checkins/notifications/social_media

1 file changed

+2
-2
lines changed

server/src/main/java/com/objectcomputing/checkins/notifications/social_media/SlackSearch.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ public String findUserEmail(String userId) {
9292
return response.getUser().getProfile().getEmail();
9393
}
9494
} catch(IOException e) {
95-
LOG.error("SlackSearch.findUserId: " + e.toString());
95+
LOG.error("SlackSearch.findUserEmail: " + e.toString());
9696
} catch(SlackApiException e) {
97-
LOG.error("SlackSearch.findUserId: " + e.toString());
97+
LOG.error("SlackSearch.findUserEmail: " + e.toString());
9898
}
9999
}
100100
return null;

0 commit comments

Comments
 (0)