mirror of https://github.com/apache/nifi.git
NIFI-13383 Changed info log level to debug in XXEValidator (#8952)
Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
2363e63c86
commit
aac90fb375
|
@ -48,7 +48,7 @@ public class XXEValidator implements Validator {
|
||||||
}
|
}
|
||||||
|
|
||||||
final String xmlFilePathString = xmlFilePath.toString();
|
final String xmlFilePathString = xmlFilePath.toString();
|
||||||
logger.info("Validating {} for XXE attack", xmlFilePathString);
|
logger.debug("Validating {} for XXE attack", xmlFilePathString);
|
||||||
|
|
||||||
if (Files.exists(xmlFilePath)) {
|
if (Files.exists(xmlFilePath)) {
|
||||||
try (BufferedReader reader = Files.newBufferedReader(xmlFilePath)) {
|
try (BufferedReader reader = Files.newBufferedReader(xmlFilePath)) {
|
||||||
|
|
Loading…
Reference in New Issue