We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2226323 commit b5125d5Copy full SHA for b5125d5
modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/GrokProcessor.java
@@ -75,6 +75,7 @@ public IngestDocument execute(IngestDocument ingestDocument) throws Exception {
75
76
Map<String, Object> matches = grok.captures(fieldValue);
77
if (matches == null) {
78
+ logger.warn(">[{}] Grok expressions do not match field value: [{}]", tag, fieldValue);
79
throw new IllegalArgumentException("Provided Grok expressions do not match field value: [" + fieldValue + "]");
80
}
81
0 commit comments