dev: minlog is off by default for Archlinux
Docker Image CI / build-and-push-image (push) Has been cancelled
Maintain Release Merge PR / update-release-pr (push) Has been cancelled
release-please / release-please (push) Has been cancelled
test / test (18.x) (push) Has been cancelled
test / test (20.x) (push) Has been cancelled
test / test (22.x) (push) Has been cancelled

We can assume Arch users are comfortable with making configuration
changes and observing high volume log output (maybe not true for
alternative distributions of arch, but for base Arch absolutely) so it
probably makes sense to have the log minimizer off for these cases.
This commit is contained in:
KernelDeimos
2025-09-08 21:37:46 -04:00
parent c2bd222532
commit 6919974d66
@@ -14,6 +14,10 @@ class MinLogService extends BaseService {
}
_init () {
// On operating systems where low-level config (high customization) is
// expected, we can turn off minlog by default.
if ( this.global_config.os.refined ) this.on = false;
// Show console widget so developer knows logs are hidden
this.add_dev_console_widget_();