add debug logging

This commit is contained in:
dosiecki 2017-09-14 17:09:09 -07:00
parent 240b55f0fe
commit 079b4e957b
2 changed files with 3 additions and 0 deletions

View file

@ -34,6 +34,8 @@ public class InitActivity extends Activity {
}
}.execute();
com.newsblur.util.Log.i(this, "cold launching version " + PrefsUtils.getVersion(this));
}
private void start() {

View file

@ -390,6 +390,7 @@ public class FolderListFragment extends NbFragment implements OnCreateContextMen
public void pushUnreadCounts() {
((Main) getActivity()).updateUnreadCounts((adapter.totalNeutCount+adapter.totalSocialNeutCount), (adapter.totalPosCount+adapter.totalSocialPosiCount));
((Main) getActivity()).updateFeedCount(adapter.lastFeedCount);
com.newsblur.util.Log.d(this, "showing " + adapter.lastFeedCount + " feeds");
}
@Override