logger.c: put in header prefix for syslog output (still missing for text

and html)
parent 68f2cd16
...@@ -401,7 +401,12 @@ static void SyslogPrint( const msg_item_t *p_msg ) ...@@ -401,7 +401,12 @@ static void SyslogPrint( const msg_item_t *p_msg )
if( p_msg->i_type == 2 ) i_priority = LOG_WARNING; if( p_msg->i_type == 2 ) i_priority = LOG_WARNING;
if( p_msg->i_type == 3 ) i_priority = LOG_DEBUG; if( p_msg->i_type == 3 ) i_priority = LOG_DEBUG;
syslog( i_priority, "%s %s", p_msg->psz_module, p_msg->psz_msg ); if( p_msg->psz_header )
syslog( i_priority, "%s %s: %s", p_msg->psz_header,
p_msg->psz_module, p_msg->psz_msg );
else
syslog( i_priority, "%s: %s", p_msg->psz_module, p_msg->psz_msg );
} }
#endif #endif
......
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