Odhcp6c spams my system log

Any idea how I can get rid of the below warnings?

Tue Mar  8 10:35:10 2022 daemon.warn odhcp6c[2228]: Server returned IA_NA status 'No Address Available (No addresses have been assigned)'
Tue Mar  8 10:35:11 2022 daemon.warn odhcp6c[2228]: Server returned IA_NA status 'No Address Available (No addresses have been assigned)'
Tue Mar  8 10:35:13 2022 daemon.warn odhcp6c[2228]: Server returned IA_NA status 'No Address Available (No addresses have been assigned)'
Tue Mar  8 10:35:14 2022 daemon.warn odhcp6c[2228]: Server returned IA_NA status 'No Address Available (No addresses have been assigned)'

I disabled odhcp6 via UCI

# uci get dhcp.lan.dhcpv6
disabled

Also changed the loglevel to 3 as you can see below.

but still get the warning every 1 second. Here is my config file.

config dnsmasq
        option domainneeded '1'
        option localise_queries '1'
        option rebind_protection '1'
        option rebind_localhost '1'
        option local '/lan/'
        option domain 'lan'
        option expandhosts '1'
        option authoritative '1'
        option readethers '1'
        option leasefile '/tmp/dhcp.leases'
        option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
        option localservice '1'
        option ednspacket_max '1232'
        option confdir '/tmp/dnsmasq.d'
        option quietdhcp '1'

config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option dhcpv4 'server'
        option ra 'server'
        list ra_flags 'none'
        option dhcpv6 'disabled'

config dhcp 'wan'
        option interface 'wan'
        option ignore '1'
        list ra_flags 'none'

config odhcpd 'odhcpd'
        option maindhcp '0'
        option leasefile '/tmp/hosts/odhcpd'
        option leasetrigger '/usr/sbin/odhcpd-update'
        option loglevel '3'

Any help is much appreciated.

Efty

To get rid of it, turn it on - not off.

Do you really need this disabled, or are you simply trying to stop the log messages?

The changes made were based on the advice found here
https://oldwiki.archive.openwrt.org/doc/techref/odhcpd#many_syslog_messages_of_the_format_dhcpv6_solicit_ia_na_from

and here

I essentially want to stop the log messages repeating every 2 seconds in the systemlog. I have no usecase for IPv6 so stoping the service does not harm.