diff --git a/briar-core/src/org/briarproject/plugins/PollerImpl.java b/briar-core/src/org/briarproject/plugins/PollerImpl.java index 2f7ac98e27e41ff6a08251ae81e04b9a3c38737b..b81d93d35a3325d7af8f2ef4053b61011747a76e 100644 --- a/briar-core/src/org/briarproject/plugins/PollerImpl.java +++ b/briar-core/src/org/briarproject/plugins/PollerImpl.java @@ -69,8 +69,10 @@ class PollerImpl implements Poller, Runnable { assert removed; final Collection<ContactId> connected = connRegistry.getConnectedContacts(p.plugin.getId()); - if(LOG.isLoggable(INFO)) - LOG.info("Polling " + p.plugin.getClass().getName()); + if(LOG.isLoggable(INFO)) { + String name = p.plugin.getClass().getSimpleName(); + LOG.info("Polling " + name); + } pluginExecutor.execute(new Runnable() { public void run() { p.plugin.poll(connected);