From e646b1795d36f439c84e0a49882248e78c981e00 Mon Sep 17 00:00:00 2001 From: Kristijan Conkas Date: Mon, 12 Dec 2016 16:14:05 +0000 Subject: [PATCH] RM-4542: removed debugging log --- .../rest/rm/community/requests/FilePlanComponentAPI.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java index 7fd5575280..feb5cb712a 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java @@ -190,7 +190,7 @@ public class FilePlanComponentAPI extends RestAPI root.fieldNames().forEachRemaining(f -> { try { - builder.addMultiPart(f, root.get(f).asText(), ContentType.JSON.name()); + builder.addMultiPart(f, root.get(f).asText(), ContentType.JSON.name()); } catch (Exception error) { @@ -206,7 +206,6 @@ public class FilePlanComponentAPI extends RestAPI */ Response response = given() .spec(builder.build()) - .log().everything() .when() .post("fileplan-components/{fileplanComponentId}/children?{parameters}", parentId, getParameters()) .andReturn();