Skip to content

Commit 883d987

Browse files
authored
SANTUARIO-630 - Log null input bytes as INFO rather than WARNING (#552)
1 parent 3212337 commit 883d987

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/jcp/xml/dsig/internal/dom/DOMReference.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ private byte[] transform(Data dereferencedData,
490490
}
491491

492492
if (data == null) {
493-
LOG.log(Level.WARNING, "The input bytes to the digest operation are null. " +
493+
LOG.log(Level.INFO, "The input bytes to the digest operation are null. " +
494494
"This may be due to a problem with the Reference URI " +
495495
"or its Transforms.");
496496
} else {

0 commit comments

Comments
 (0)