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

2016-08-04 Thread Paul Durrant
> -Original Message- > From: Stefan Hajnoczi [mailto:stefa...@redhat.com] > Sent: 04 August 2016 13:04 > To: Paul Durrant > Cc: qemu-devel@nongnu.org > Subject: Re: [PATCH] trace: add syslog tracing backend > > On Tue, Aug 02, 2016 at 04:06:42PM +0100, Paul Durrant wrote: > > This patch ad

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

2016-08-04 Thread Stefan Hajnoczi
On Tue, Aug 02, 2016 at 04:06:42PM +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

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

2016-08-02 Thread Dr. David Alan Gilbert
* Daniel P. Berrange (berra...@redhat.com) wrote: > On Tue, Aug 02, 2016 at 04:06:42PM +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

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

2016-08-02 Thread Paul Durrant
> -Original Message- > From: Daniel P. Berrange [mailto:berra...@redhat.com] > Sent: 02 August 2016 16:32 > To: Paul Durrant > Cc: qemu-devel@nongnu.org; Stefan Hajnoczi > Subject: Re: [Qemu-devel] [PATCH] trace: add syslog tracing backend > > On Tue, Aug 02,

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

2016-08-02 Thread Daniel P. Berrange
On Tue, Aug 02, 2016 at 04:06:42PM +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] trace: add syslog tracing backend

2016-08-02 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