zerobranch / android-remote-debugger

A library for remote logging, database debugging, shared preferences and network requests
Apache License 2.0
174 stars 27 forks source link

How long is the logger history retained, and can I manage its retention period? #12

Open jehadabdalqader opened 12 months ago

jehadabdalqader commented 12 months ago

I want to check if the logging will keep filling the memory ?

If there is expiration period then can I control its time ?

zerobranch commented 8 months ago

All logs are saved to the database, and the database is cleared every time the library is started

Elswah commented 1 month ago

@zerobranch you mean every time AndroidRemoteDebugger.init( new AndroidRemoteDebugger.Builder(this) .enabled(true) .enableDuplicateLogging() .build() ); is called will delete the logs , how to keep it from delete manually or every 2 weeks

Elswah commented 1 month ago

@zerobranch any update please want to keep the logs on local storage for 1 month

Elswah commented 1 month ago

any update on this