Firmware version 07.22.3
Since I realized that log level debug has been disabled, I tried to re-enable by performing the following actions via the device’s command line.
root@RUT956:~# uci add_list log.global.log_levels=7
root@RUT956:~# uci commit log
root@RUT956:~# /etc/init.d/log restart
After that, restarting the logging service results in the syslog quickly getting flooded by debug entries from the port_eventsd process.
367 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Parsing switch info for device: switch0
368 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Parsing port map for device: switch0
369 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Skipping attribute flush_arl_table of type NOVAL
370 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Assigning link attribute value for link
371 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Skipping attribute flush_arl_table of type NOVAL
372 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Assigning link attribute value for link
373 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Skipping attribute flush_arl_table of type NOVAL
374 Tue May 26 08:44:48 2026 daemon.debug port_eventsd: Assigning link attribute value for link
...
Hence I’d like to know if there is any way to disable log level debug for the port_eventsd process, or if there is a better way to re-enable log level debug.
Thank you.