If you see log entries that start with:
[Sep 26, 2026, 20:12:25 Central Daylight Time]
… in your logs, you can shorten that to give you more horizontal space for the actual log entries.
Issue:
vi /www/luci-static/resources/tools/views.js
… press i to enter editing mode.
Look for the following code:
new Intl.DateTimeFormat(undefined,{dateStyle:'medium',timeStyle:(ts==0)?'long':'full',
… and change it to:
new Intl.DateTimeFormat(undefined,{dateStyle:'medium',timeStyle:(ts==0)?'medium':'medium',
… which gives log entries that start with:
[Sep 26, 2026, 20:12:25]
… press Esc to exit editing mode, then press :wq to save and exit. Restart your browser.
To ensure it survives firmware updates, put:
/www/luci-static/resources/tools/views.js
… into System >> Backup / Flash firmware >> Configuration tab, then press the Save button.