Jave-Chen opened a new issue #1893: [BUG] Starting master didn't output full log to log file URL: https://github.com/apache/incubator-dolphinscheduler/issues/1893 When start master use command below `sh ./bin/dolphinscheduler-daemon.sh start master-serve` there is just some part of beginning output in log files, like this  After modified start command in dolphinscheduler-daemon.sh , ``` #nohup $JAVA_HOME/bin/java $exec_command > $log 2>&1 < /dev/null & $JAVA_HOME/bin/java $exec_command ``` And added STDOUT in conf/master_logback.xml file ``` <root level="INFO"> <appender-ref ref="STDOUT"/> ... </root> ``` The same command output the full log  It seems like the log didn't output to the file correctly.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
