This commit is contained in:
Ernir Erlingsson
2016-05-11 23:55:45 +02:00
parent 698ca41720
commit eac17e74a1
3 changed files with 2 additions and 5 deletions

View File

@@ -60,7 +60,6 @@ public class BriarControllerImpl implements BriarController {
activity.startService(new Intent(activity, BriarService.class));
bound = activity.bindService(new Intent(activity, BriarService.class),
serviceConnection, 0);
LOG.info("Briar service started " + bound);
}
@Override
@@ -92,7 +91,6 @@ public class BriarControllerImpl implements BriarController {
}
protected void unbindService() {
LOG.info("Briar service unbind " + bound);
if (bound) activity.unbindService(serviceConnection);
}