https://github.com/redis/redis/blob/9fcd9e191e6f54276688fb7c74e1d5c3c4be9a75/src/server.c#L5284
We have an application that starts and daemonizes redis and when we updated to redis4, we started getting these redis server notifications in our application's log file. Since these log statements occur before redis is daemonized, they're going to stdout instead of /dev/null. Is it possible to move them all down after daemonize() has been called?