In AndroidHarness.onCreate, there's the following code:
do {
if (log.getHandlers().length == 0) {
log = logger.getParent();
This wil result in an infinite loop if the initial logger has no handlers but
does have a parent. The last line quoted above should be log = log.getParent();
Original issue reported on code.google.com by sba...@google.com on 8 Mar 2012 at 6:11
Original issue reported on code.google.com by
sba...@google.com
on 8 Mar 2012 at 6:11