Skip to content

Commit 355016c

Browse files
committed
Switch logging output about schema loading details to DEBUG (#443)
1 parent 8b7ad59 commit 355016c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metafacture-json/src/main/java/org/metafacture/json/JsonValidator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ private void initSchema(final String schemaUrl) {
131131
.resolutionScope(baseFor(url.toString()));
132132
}
133133
catch (final IOException e) {
134-
LOG.info("Could not read as URL: {}, trying to load from class path", schemaUrl);
134+
LOG.debug("Could not read as URL: {}, trying to load from class path", schemaUrl);
135135
schemaLoader = schemaLoader.schemaClient(SchemaClient.classPathAwareClient())
136136
.schemaJson(jsonFrom(getClass().getResourceAsStream(schemaUrl)))
137137
.resolutionScope("classpath://" + baseFor(schemaUrl));

0 commit comments

Comments
 (0)