I left a web session logged in overnight, when I came back to the page in the morning, it tried to refresh its content with an expired auth token, because of this, the webserver.log file got flooded with requests like these:
[2025-11-17 08:11:23.645 GMT 657347] Authentication required, redirecting to /admin/login
[2025-11-17 08:11:23.722 GMT 657347] Authentication required, redirecting to /admin/login
[2025-11-17 08:11:23.788 GMT 657347] Authentication required, redirecting to /admin/login
[2025-11-17 08:11:23.876 GMT 657347] Authentication required, redirecting to /admin/login
[2025-11-17 08:11:23.938 GMT 657347] Authentication required, redirecting to /admin/login
[2025-11-17 08:11:24.002 GMT 657347] Authentication required, redirecting to /admin/login
[2025-11-17 08:11:24.032 GMT 657347] Authentication required, redirecting to /admin/login
I can understand why it is happening, but it would be good if either something was triggered in the app to have it stop making the requests when it knows they are failing, or for the logger to stop posting or bundle them after a given number.