use special logger for insertion metrics

This allows us to enable/disable metric logging without having to log 
other stuff.
This commit is contained in:
2017-04-13 20:12:00 +02:00
parent ce44c3d8d6
commit 58f8606cd3
2 changed files with 5 additions and 4 deletions

View File

@@ -102,7 +102,7 @@ public class TcpIngestor implements Ingestor, AutoCloseable, DisposableBean {
}
if (entry.isPresent()) {
LOGGER.trace("adding entry to queue: {}", entry);
LOGGER.debug("adding entry to queue: {}", entry);
queue.put(entry.get());
}