NIFI-514 removed extraneous logging

This commit is contained in:
joewitt 2015-04-11 12:06:45 -04:00
parent 7aca8eaeae
commit 9ee34e2e3c
1 changed files with 0 additions and 2 deletions

View File

@ -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});
}
}