Commit adcc2662 authored by J. Alexander Treuman's avatar J. Alexander Treuman

Redirect to log files earlier to prevent some debug spam on console

git-svn-id: https://svn.musicpd.org/mpd/trunk@4406 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 09056300
......@@ -543,18 +543,22 @@ int main(int argc, char *argv[])
changeToUser();
openLogFiles(&options, &out, &err);
/* Redirect only stdout, so fatal errors are spit out to console */
setupLogOutput(&options, out, stderr);
initPlayerData();
daemonize(&options);
/* Now that we're daemonized, redirect errors to the error log */
setupLogOutput(&options, out, err);
initInputPlugins();
initPaths();
initAudioConfig();
initAudioDriver();
initSigHandlers();
setupLogOutput(&options, out, err);
startMainProcess();
/* This is the main process which has
* been forked from the master process.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment