1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-13 03:02:22 -05:00

Caldav : disable full debug trace

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@257 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2008-12-25 22:56:19 +00:00
parent a3191fbde2
commit cb9ed86e1d

View File

@ -158,7 +158,7 @@ public class CaldavConnection extends AbstractConnection {
public void handleRequest(String command, String path, Map<String, String> headers, String body) throws IOException {
int depth = getDepth(headers);
// full debug trace
DavGatewayTray.debug("command: " + command + " " + path + " Depth: " + depth + "\n" + body);
// DavGatewayTray.debug("command: " + command + " " + path + " Depth: " + depth + "\n" + body);
if ("OPTIONS".equals(command)) {
sendOptions();
@ -488,7 +488,7 @@ public class CaldavConnection extends AbstractConnection {
sendClient("");
if (content != null && content.length() > 0) {
// full debug trace
DavGatewayTray.debug("> " + content);
// DavGatewayTray.debug("> " + content);
sendClient(content.getBytes("UTF-8"));
}
}