mirror of https://github.com/apache/nifi.git
NIFI-514 removed extraneous logging
This commit is contained in:
parent
7aca8eaeae
commit
9ee34e2e3c
|
@ -183,7 +183,6 @@ public class GeoEnrichIP extends AbstractProcessor {
|
|||
|
||||
if (response == null) {
|
||||
session.transfer(flowFile, REL_NOT_FOUND);
|
||||
getLogger().warn("No enrichment data found for ip {} of {}", new Object[]{ipAttributeValue, flowFile});
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -204,7 +203,6 @@ public class GeoEnrichIP extends AbstractProcessor {
|
|||
flowFile = session.putAllAttributes(flowFile, attrs);
|
||||
|
||||
session.transfer(flowFile, REL_FOUND);
|
||||
getLogger().info("Completed lookup of IP geo information for {}", new Object[]{flowFile});
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue