From d7cf31fb9a3afee6bc90175ee4ff585b96c48926 Mon Sep 17 00:00:00 2001 From: Maxime Dor Date: Wed, 13 Sep 2017 02:28:37 +0200 Subject: [PATCH] Remove debug log statement --- src/main/groovy/io/kamax/mxisd/invitation/InvitationManager.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/groovy/io/kamax/mxisd/invitation/InvitationManager.java b/src/main/groovy/io/kamax/mxisd/invitation/InvitationManager.java index 9f231b3..83e9459 100644 --- a/src/main/groovy/io/kamax/mxisd/invitation/InvitationManager.java +++ b/src/main/groovy/io/kamax/mxisd/invitation/InvitationManager.java @@ -280,7 +280,6 @@ public class InvitationManager { try { log.info("Searching for mapping created since invite {} was created", getId(reply)); Optional result = lookupMgr.find(reply.getInvite().getMedium(), reply.getInvite().getAddress(), true); - log.info("Result: {}", result); if (result.isPresent()) { SingleLookupReply lookup = result.get(); log.info("Found mapping for pending invite {}", getId(reply));