]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedXmlConverterCompat.java
Update license header
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached / src / main / java / org / argeo / slc / detached / DetachedXmlConverterCompat.java
index a306fa8f89aea10e1da2a72f20c98343b9b89ea0..d7f6394fb0e586226b2f5d0e7142d0128e650c34 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.argeo.slc.detached;
 
 import java.io.StringReader;
@@ -61,13 +77,13 @@ public class DetachedXmlConverterCompat implements DetachedXmlConverter {
                        throw new DetachedException("Could not copy xml source", e);
                }
 
-               if (log.isDebugEnabled()) {
+               if (log.isTraceEnabled()) {
                        try {
                                DOMSource domSource = new DOMSource(result.getNode());
                                StringWriter stringWriter = new StringWriter();
                                StreamResult streamResult = new StreamResult(stringWriter);
                                copy.transform(domSource, streamResult);
-                               log.debug("Unmarshall communication:\n"
+                               log.trace("Unmarshall communication:\n"
                                                + stringWriter.toString());
                                IOUtils.closeQuietly(stringWriter);
                        } catch (TransformerException e) {