fix(meshlog): Change default retention to 30 days (#4177)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-01-09 16:38:36 -06:00 committed by GitHub
parent 63318bf66e
commit 399dce19a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 42 deletions

View file

@ -29,7 +29,7 @@ interface MeshLogPrefs {
companion object {
const val RETENTION_DAYS_KEY = "meshlog_retention_days"
const val LOGGING_ENABLED_KEY = "meshlog_logging_enabled"
const val DEFAULT_RETENTION_DAYS = 7
const val DEFAULT_RETENTION_DAYS = 30
const val DEFAULT_LOGGING_ENABLED = true
const val MIN_RETENTION_DAYS = -1 // -1 == keep last hour
const val MAX_RETENTION_DAYS = 365