Skip to content
Snippets Groups Projects
Commit 1f0165de authored by tmortagne's avatar tmortagne
Browse files

[misc] Getting rid of unwanted log

parent c38553f4
No related branches found
No related tags found
No related merge requests found
......@@ -262,6 +262,9 @@ private String exportXAR(XWikiContext context) throws XWikiException, IOExceptio
// Create input wiki stream
DocumentInstanceInputProperties inputProperties = new DocumentInstanceInputProperties();
// We don't want to log the details
inputProperties.setVerbose(false);
inputProperties.setWithJRCSRevisions(history);
inputProperties.setWithRevisions(false);
......@@ -289,6 +292,9 @@ private String exportXAR(XWikiContext context) throws XWikiException, IOExceptio
// Create output wiki stream
XAROutputProperties xarProperties = new XAROutputProperties();
// We don't want to log the details
xarProperties.setVerbose(false);
XWikiResponse response = context.getResponse();
xarProperties.setTarget(new DefaultOutputStreamOutputTarget(response.getOutputStream()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment