Re: [Qemu-devel] [PATCH v2] trace: add syslog tracing backend

2016-08-08 Thread Stefan Hajnoczi
On Thu, Aug 04, 2016 at 02:44:14PM +0100, Paul Durrant wrote: > This patch adds a tracing backend which sends output using syslog(). > The syslog backend is limited to POSIX compliant systems. > > openlog() is called with facility set to LOG_DAEMON, with the LOG_PID > option. Trace events are logg

[Qemu-devel] [PATCH v2] trace: add syslog tracing backend

2016-08-04 Thread Paul Durrant
This patch adds a tracing backend which sends output using syslog(). The syslog backend is limited to POSIX compliant systems. openlog() is called with facility set to LOG_DAEMON, with the LOG_PID option. Trace events are logged at level LOG_INFO. Signed-off-by: Paul Durrant Cc: Stefan Hajnoczi