From: Alessandro Astone Date: Sun, 24 Aug 2025 14:48:50 +0000 (+0200) Subject: logging: Use RotatingFileHandler to trim logfile at 5MB X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/commitdiff_plain/2e4e921317903f5152ce17bc7aa9fdf278b45f15?ds=sidebyside;hp=2e4e921317903f5152ce17bc7aa9fdf278b45f15 logging: Use RotatingFileHandler to trim logfile at 5MB Remove all direct uses of args.logfd: everything goes through the logger now. Only the container manager process is allowed to write to the log, which now has 0o644 permissions. Other commands will only log to stdout. Logs that would previously appear in the logfile will now only be visible with --details-to-stdout. ---