lichess-org / mobile

Lichess mobile app v2
GNU General Public License v3.0
1.1k stars 150 forks source link

Add an http request logs screen #699

Open veloce opened 1 month ago

veloce commented 1 month ago

Add a way for the user to see all the http requests made by the app, using the dart logging package. It might be useful for users who want to know what is going in the background, and for debugging purposes.

The screen should be accessible from the settings screen. Should be a really simple list of text lines in the following form: <DateTime> <Http response code> <HTTP METHOD> <Uri>

Implementation notes:

amanxnanda commented 1 month ago

This looks interesting. Should I start with implementation?