mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-20 06:39:54 +01:00
Log simple names of plugin classes when polling.
This commit is contained in:
@@ -69,8 +69,10 @@ class PollerImpl implements Poller, Runnable {
|
|||||||
assert removed;
|
assert removed;
|
||||||
final Collection<ContactId> connected =
|
final Collection<ContactId> connected =
|
||||||
connRegistry.getConnectedContacts(p.plugin.getId());
|
connRegistry.getConnectedContacts(p.plugin.getId());
|
||||||
if(LOG.isLoggable(INFO))
|
if(LOG.isLoggable(INFO)) {
|
||||||
LOG.info("Polling " + p.plugin.getClass().getName());
|
String name = p.plugin.getClass().getSimpleName();
|
||||||
|
LOG.info("Polling " + name);
|
||||||
|
}
|
||||||
pluginExecutor.execute(new Runnable() {
|
pluginExecutor.execute(new Runnable() {
|
||||||
public void run() {
|
public void run() {
|
||||||
p.plugin.poll(connected);
|
p.plugin.poll(connected);
|
||||||
|
|||||||
Reference in New Issue
Block a user