Repository: any23
Updated Branches:
  refs/heads/master 482e78040 -> 5a3ba9d1f


ANY23-327 Change log level to debug for RDFUtils.isAbsoluteIRI()


Project: http://git-wip-us.apache.org/repos/asf/any23/repo
Commit: http://git-wip-us.apache.org/repos/asf/any23/commit/c2ddb586
Tree: http://git-wip-us.apache.org/repos/asf/any23/tree/c2ddb586
Diff: http://git-wip-us.apache.org/repos/asf/any23/diff/c2ddb586

Branch: refs/heads/master
Commit: c2ddb5862b14fb1099b0d0dfc2193790ad3aa2b0
Parents: 482e780
Author: Hans <[email protected]>
Authored: Sun Jan 28 23:30:54 2018 -0600
Committer: Hans <[email protected]>
Committed: Sun Jan 28 23:30:54 2018 -0600

----------------------------------------------------------------------
 core/src/main/java/org/apache/any23/rdf/RDFUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/any23/blob/c2ddb586/core/src/main/java/org/apache/any23/rdf/RDFUtils.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/any23/rdf/RDFUtils.java 
b/core/src/main/java/org/apache/any23/rdf/RDFUtils.java
index aee9e14..d323fb3 100644
--- a/core/src/main/java/org/apache/any23/rdf/RDFUtils.java
+++ b/core/src/main/java/org/apache/any23/rdf/RDFUtils.java
@@ -528,10 +528,10 @@ public class RDFUtils {
             new java.net.URI(href.trim());
             return true;
         } catch (IllegalArgumentException e) {
-            LOG.error("Error processing href: {}", href, e);
+            LOG.debug("Error processing href: {}", href, e);
             return false;
         } catch (URISyntaxException e) {
-            LOG.error("Error interpreting href: {} as URI.", href, e);
+            LOG.debug("Error interpreting href: {} as URI.", href, e);
             return false;
         }
     }

Reply via email to