Re: [ovs-dev] [PATCH V6 17/17] vlog test: Disable default syslog logger

2016-07-06 Thread Daniele Di Proietto
2016-07-06 15:32 GMT-07:00 Guru Shetty : > On 6 July 2016 at 05:38, Paul Boca wrote: > > > Disable the syslog logger in case on Windows, '/dev/log' doesn't exist. > > Seems like on Python34 a default handler is added to the logger and it > > prints > > even if no handler is set by us. > > > > Sig

Re: [ovs-dev] [PATCH V6 17/17] vlog test: Disable default syslog logger

2016-07-06 Thread Guru Shetty
On 6 July 2016 at 05:38, Paul Boca wrote: > Disable the syslog logger in case on Windows, '/dev/log' doesn't exist. > Seems like on Python34 a default handler is added to the logger and it > prints > even if no handler is set by us. > > Signed-off-by: Paul-Daniel Boca > --- > V3: Initial commit

Re: [ovs-dev] [PATCH V6 17/17] vlog test: Disable default syslog logger

2016-07-06 Thread Daniele Di Proietto
I'm not a windows expert, but this also solves a problem I was having on a linux system chroot where /dev/log is absent. I pushed this patch to master, thanks, Daniele 2016-07-06 5:38 GMT-07:00 Paul Boca : > Disable the syslog logger in case on Windows, '/dev/log' doesn't exist. > Seems like on

[ovs-dev] [PATCH V6 17/17] vlog test: Disable default syslog logger

2016-07-06 Thread Paul Boca
Disable the syslog logger in case on Windows, '/dev/log' doesn't exist. Seems like on Python34 a default handler is added to the logger and it prints even if no handler is set by us. Signed-off-by: Paul-Daniel Boca --- V3: Initial commit V4: No changes V5: No changes V6: No changes --- python/ov