forked from huawei/openGauss-server
!1529 修复log_destination某些设置下启动失败的问题
Merge pull request !1529 from 胡正超/pglog
This commit is contained in:
commit
b58517ed45
|
|
@ -3091,8 +3091,9 @@ static void send_message_to_server_log(ErrorData* edata)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If in the syslogger process, try to write messages direct to file */
|
/* 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 &&
|
||||||
if (t_thrd.role == SYSLOGGER && logfile != NULL) {
|
t_thrd.log_cxt.Log_destination & LOG_DESTINATION_STDERR &&
|
||||||
|
t_thrd.logger.syslogFile != NULL) {
|
||||||
write_syslogger_file(buf.data, buf.len, LOG_DESTINATION_STDERR);
|
write_syslogger_file(buf.data, buf.len, LOG_DESTINATION_STDERR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue