Conversation
Add compressed logs to .gitignore and switch logback rolling policies to produce .log.gz files with longer retention and caps (auth: maxHistory=7, totalSizeCap=64MB; info: maxHistory=7, totalSizeCap=256MB). Also update Gradle testLogging events from "started","failed" to "skipped","failed". Changes: app/core/.gitignore, app/core/src/main/resources/logback.xml, build.gradle. Purpose: keep compressed historical logs, limit disk usage, and adjust test output verbosity.
Contributor
✅ Backend License Check PassedAll backend dependencies have valid and allowed licenses. The backend license report has been updated successfully. |
Contributor
🚀 V2 Auto-Deployment Complete!🔗 Direct Test URL (non-SSL) http://54.175.155.236:7648 🧩 Admin portal included - try it at http://54.175.155.236:7648/portal. This deployment will be automatically cleaned up when the PR is closed. 🔄 Auto-deployed for approved V2 contributors. |
balazs-szucs
approved these changes
Aug 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of Changes
This PR improves log retention and disk usage management by compressing rotated log files and applying explicit retention limits.
authlogs are now stored as.log.gzfiles.infologs are now stored as.log.gzfiles.64MBtotal size cap for authentication log archives.256MBtotal size cap for application log archives.*.log.gztoapp/core/.gitignoreso compressed log archives are not accidentally committed.startedtest events from the output.skippedtest events.The change was made to retain useful historical logs for longer while reducing their storage footprint and preventing archived logs from growing without bounds. The Gradle logging adjustment also reduces unnecessary test output while making skipped tests visible.
Checklist
General
Documentation
Translations (if applicable)
scripts/counter_translation.pyUI Changes (if applicable)
Testing (if applicable)
task checkto verify linters, typechecks, and tests pass