Hi again, @Gertjan
Quick update, looks like the following config will do what I want:
'loggers' => [
[
'name' => 'kea-dhcp4',
'output_options' => [[
'output' => 'syslog'
]],
'severity' => config_get_path('kea/loglevel', 'INFO')
],
[
'name' => 'kea-dhcp4.leases',
'output_options' => [[
'output' => '/var/log/kea-dhcp4.log',
'maxsize' => 512000,
'maxver' => 7
]],
'severity' => config_get_path('kea/loglevel', 'INFO')
]
],
Thanks again for your help! :)