You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/networknt/schema/JsonMetaSchema.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -278,7 +278,7 @@ public JsonValidator newValidator(ValidationContext validationContext, String sc
278
278
Keywordkw = keywords.get(keyword);
279
279
if (kw == null) {
280
280
if (UNKNOWN_KEYWORDS.put(keyword, keyword) == null) {
281
-
logger.warn("Unknown keyword " + keyword + " - you should define your own Meta Schema. If the keyword is irrelevant for validation, just use a NonValidationKeyword");
281
+
logger.warn("Unknown keyword {} - you should define your own Meta Schema. If the keyword is irrelevant for validation, just use a NonValidationKeyword", keyword);
282
282
}
283
283
returnnull;
284
284
}
@@ -289,13 +289,13 @@ public JsonValidator newValidator(ValidationContext validationContext, String sc
0 commit comments