by default log output is delayed and not too detailed. for development you have to enable ‘verbose logging’. either using the UI (on ‘advanced’ => ‘logs’ check on ‘verbose logging’) or on the CLI:
VerboseLogging.sh enable
once you enable it, the logs will be a lot faster and more detailed. in fact, they’ll have to be rotated much quicker too, or it would fill the available space. that’s why i usually do this:
while true; do tail -f /var/log/LuaUPnP.log | egrep '^5|^0[18]'; done
the [tt]while[/tt] loop restarts the [tt]tail -f[/tt] each time it’s terminated by [tt]logrotate[/tt]; and the [tt]egrep[/tt] helps to read only what’s interesting to me a that time