This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch branch_1x
in repository https://gitbox.apache.org/repos/asf/tika.git

commit f4c8e8f61b22c4553dcbc6cbf9fa3f49dd645d6b
Author: tallison <[email protected]>
AuthorDate: Tue Jun 16 14:13:33 2020 -0400

    fix merge conflicts
---
 tika-core/src/main/java/org/apache/tika/utils/XMLReaderUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tika-core/src/main/java/org/apache/tika/utils/XMLReaderUtils.java 
b/tika-core/src/main/java/org/apache/tika/utils/XMLReaderUtils.java
index 291ba2b..6bbd2ba 100644
--- a/tika-core/src/main/java/org/apache/tika/utils/XMLReaderUtils.java
+++ b/tika-core/src/main/java/org/apache/tika/utils/XMLReaderUtils.java
@@ -339,9 +339,9 @@ public class XMLReaderUtils implements Serializable {
         } catch (SecurityException e) {
             throw e;
         } catch (Exception e) {
-            LOG.warn("Transformer Attribute unsupported: {}", attribute, e);
+            LOG.log(Level.WARNING, "Transformer Attribute unsupported: " + 
attribute, e);
         } catch (AbstractMethodError ame) {
-            LOG.warn("Cannot set Transformer attribute because outdated XML 
parser in classpath: {}", attribute, ame);
+            LOG.log(Level.WARNING, attribute, ame);
         }
     }
 

Reply via email to