!1933 修复log_destination某些设置下启动失败的问题

Merge pull request !1933 from 胡正超/master
This commit is contained in:
opengauss-bot
2022-07-30 06:58:20 +00:00
committed by Gitee

View File

@ -3119,8 +3119,9 @@ static void send_message_to_server_log(ErrorData* edata)
}
/* If in the syslogger process, try to write messages direct to file */
FILE* logfile = LOG_DESTINATION_CSVLOG ? t_thrd.logger.csvlogFile : t_thrd.logger.syslogFile;
if (t_thrd.role == SYSLOGGER && logfile != NULL) {
if (t_thrd.role == SYSLOGGER &&
t_thrd.log_cxt.Log_destination & LOG_DESTINATION_STDERR &&
t_thrd.logger.syslogFile != NULL) {
write_syslogger_file(buf.data, buf.len, LOG_DESTINATION_STDERR);
}