Skip to content

Commit

Permalink
Switch logging output about schema loading details to DEBUG (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Feb 3, 2023
1 parent 8b7ad59 commit 355016c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private void initSchema(final String schemaUrl) {
.resolutionScope(baseFor(url.toString()));
}
catch (final IOException e) {
LOG.info("Could not read as URL: {}, trying to load from class path", schemaUrl);
LOG.debug("Could not read as URL: {}, trying to load from class path", schemaUrl);
schemaLoader = schemaLoader.schemaClient(SchemaClient.classPathAwareClient())
.schemaJson(jsonFrom(getClass().getResourceAsStream(schemaUrl)))
.resolutionScope("classpath://" + baseFor(schemaUrl));
Expand Down

0 comments on commit 355016c

Please sign in to comment.