Skip to content

Commit

Permalink
Log the page requested.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloercoli committed Mar 7, 2024
1 parent 3acf725 commit 3bdb704
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public void onErrorResponse(VolleyError volleyError) {
}
};

AppLog.d(AppLog.T.READER, "reader service > updating followed blogs");
AppLog.d(AppLog.T.READER, "reader service > updating followed blogs. Page requested: " + page);
// request using ?meta=site,feed to get extra info
WordPress.getRestClientUtilsV1_2()
.get("read/following/mine?number=100&page=" + page + "&meta=site%2Cfeed", listener, errorListener);
Expand Down Expand Up @@ -351,7 +351,8 @@ public void run() {
// (ie: a blog has been followed/unfollowed since local was last updated)
if (!localBlogs.hasSameBlogs(serverBlogs)) {
ReaderPostTable.updateFollowedStatus();
AppLog.i(AppLog.T.READER, "reader blogs service > followed blogs changed");
AppLog.i(AppLog.T.READER, "reader blogs service > followed blogs changed: "
+ totalSites);
sitesSubscribedChanged = true;
}
}
Expand Down

0 comments on commit 3bdb704

Please sign in to comment.