My log (accessed via docker-compose logs -f lemmy has gotten very noisy since my instance has been federating with several others. It makes it harder to troubleshoot odd behavior and I'm concerned that it's going to quickly fill up my server's disk with logs. What can I do to improve this?
7 Comments
poVoq@slrpnk.net · 4 pts · 3y
Funny... I was just getting annoyed by the same.
I think the culprit is the RUST_LOG env variable where by default everything is set to "info" or "debug". I had it on "info", but that was still very verbose. I am currently trying it with all "warn".
Edit: the pictrs log is also overly verbose by default it seems.
ptz@lemmy.ptznetwork.org · 3 pts · 3y
I just used the Docker logging options to cap the stdout/stderr log to a reasonable size. Just add
loggingoptions to each chatty service and change25mto whatever makes sense for your environment.docker-compose.yml: