Index: lams_tool_whiteboard/src/java/org/lamsfoundation/lams/tool/whiteboard/service/WhiteboardService.java =================================================================== diff -u -r77af7934c1b60274b5d2b534735179d56ea9b23b -r3c4e1e8fb214d5f82dc908c6520ef99178d5e5e4 --- lams_tool_whiteboard/src/java/org/lamsfoundation/lams/tool/whiteboard/service/WhiteboardService.java (.../WhiteboardService.java) (revision 77af7934c1b60274b5d2b534735179d56ea9b23b) +++ lams_tool_whiteboard/src/java/org/lamsfoundation/lams/tool/whiteboard/service/WhiteboardService.java (.../WhiteboardService.java) (revision 3c4e1e8fb214d5f82dc908c6520ef99178d5e5e4) @@ -608,6 +608,9 @@ throw new IOException("When copying Whiteboard from ID " + sourceWid + " to ID " + targetWid + " server responded with code " + code); } + if (log.isDebugEnabled()) { + log.debug("Copied Whiteboard from ID " + sourceWid + " to ID " + targetWid); + } } catch (IOException e) { throw new WhiteboardApplicationException( "Could not copy Whiteboard from ID " + sourceWid + " to ID " + targetWid, e); @@ -647,6 +650,10 @@ throw new IOException( "When uploading Whiteboard content to ID " + wid + " server responded with code " + code); } + + if (log.isDebugEnabled()) { + log.debug("Uploaded Whiteboard content to ID " + wid); + } } catch (IOException e) { throw new WhiteboardApplicationException("Could not upload Whiteboard content to ID " + wid, e); }