Skip to content

Commit

Permalink
chore(core): reduce ExampleJsonGenerator log level
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed Jan 5, 2024
1 parent e3cec1d commit 9a5186a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Object fromSchema(Schema schema, Map<String, Schema> definitions) {
String exampleString = buildSchema(schema, definitions);
return objectMapper.readValue(exampleString, Object.class);
} catch (JsonProcessingException | ExampleGeneratingException ex) {
log.warn("Failed to build json example for schema {}", schema.getName());
log.info("Failed to build json example for schema {}", schema.getName(), ex);
}
return null;
}
Expand Down

0 comments on commit 9a5186a

Please sign in to comment.