1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Add debug logging when K-9 doesn't enable push because the user has

configured push to be off.
This commit is contained in:
Jesse Vincent 2010-08-11 03:36:49 +00:00
parent 0229d8a1fe
commit de16b21124

View File

@ -410,6 +410,13 @@ public class MailService extends CoreService
setupPushers(null);
schedulePushers(startId);
}
else
{
if (K9.DEBUG) {
Log.i(K9.LOG_TAG, "Not scheduling pushers: connectivity? "+hasConnectivity + " -- doBackground? "+doBackground);
}
}
}
}