Index: lams_central/src/java/org/lamsfoundation/lams/webservice/xml/LessonManagerServlet.java =================================================================== RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/webservice/xml/LessonManagerServlet.java,v diff -u -r1.66 -r1.67 --- lams_central/src/java/org/lamsfoundation/lams/webservice/xml/LessonManagerServlet.java 27 Jun 2016 08:21:24 -0000 1.66 +++ lams_central/src/java/org/lamsfoundation/lams/webservice/xml/LessonManagerServlet.java 15 Jul 2016 05:59:28 -0000 1.67 @@ -190,6 +190,7 @@ element.setAttribute(CentralConstants.ATTR_LESSON_ID, lessonId.toString()); } else if (method.equals(CentralConstants.METHOD_CLONE)) { + lsId = new Long(lsIdStr); Long lessonId = cloneLesson(serverId, datetime, hashValue, username, lsId, courseId, country, lang); @@ -739,6 +740,8 @@ private Long importLearningDesign(HttpServletRequest request, HttpServletResponse response, String filePath, String username, String serverId, String customCSV) throws RemoteException { + log.info("Starting import of learning design from the following path: " + filePath + ". "); + List ldErrorMsgs = new ArrayList(); List toolsErrorMsgs = new ArrayList(); Long ldId = null;