Can you send me your logs?
Logging Options
Boot Runner logs messages via the Apple System Logger. To view the logs, open Terminal and enter in the following command:
log show --style syslog --predicate ‘process contains[cd] “Boot Runner”’ --info --last 2d
You can adjust the “2d” for a longer or shorter time period. You can specify a number and then m (minutes) h (hours) or d (days). For example: “–last 2m” or “–last 3h”.
To send the output to a file, redirect the output:
log show --style syslog --predicate ‘process contains[cd] “Boot Runner”’ --info --last 2d > ~/Desktop/bootrunner.log
This will save the last 2 days of Boot Runner output to a file on the current user’s desktop called “bootrunner.log”.
tim