From d2a2677c8d3d55e375d4e7c09eb077a1eddc96ec Mon Sep 17 00:00:00 2001 From: Alexei Gradinari Date: Thu, 5 May 2016 17:41:21 -0400 Subject: [PATCH] logger: Add PID to syslog messages. During refactoring of this support the addition of the PID to messages was removed. This change adds it back in. ASTERISK-25538 #close Change-Id: Ie2d43b0652e59b7ac319a7dba94501540d70ba36 --- main/logger.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main/logger.c b/main/logger.c index 5a87d45b43..1424352380 100644 --- a/main/logger.c +++ b/main/logger.c @@ -316,6 +316,7 @@ static struct logchannel *make_logchannel(const char *channel, const char *compo chan->type = LOGTYPE_SYSLOG; ast_copy_string(chan->filename, channel, sizeof(chan->filename)); + openlog("asterisk", LOG_PID, chan->facility); } else { const char *log_dir_prefix = ""; const char *log_dir_separator = "";