From 1185e7078648f60c66e7f8b027db1052d988f1dd Mon Sep 17 00:00:00 2001 From: root Date: Mon, 3 Jul 2017 01:02:47 +0900 Subject: [PATCH] turn debugger off --- src/jp/ac/keio/sfc/ht/sox/soxlib/SoxConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jp/ac/keio/sfc/ht/sox/soxlib/SoxConnection.java b/src/jp/ac/keio/sfc/ht/sox/soxlib/SoxConnection.java index afbc633..353c23e 100644 --- a/src/jp/ac/keio/sfc/ht/sox/soxlib/SoxConnection.java +++ b/src/jp/ac/keio/sfc/ht/sox/soxlib/SoxConnection.java @@ -104,7 +104,7 @@ public void connect() throws SmackException, IOException, XMPPException { SmackConfiguration.setDefaultPacketReplyTimeout(300 * 1000); XMPPTCPConnectionConfiguration config = XMPPTCPConnectionConfiguration.builder().setHost(server).setPort(5222) - .setServiceName(service).setSecurityMode(SecurityMode.disabled).setDebuggerEnabled(isDebugEnable) + .setServiceName(service).setSecurityMode(SecurityMode.disabled).setDebuggerEnabled(false) .setConnectTimeout(30 * 1000).build(); con = new XMPPTCPConnection(config);