[libvirt] [PATCH 01/12] Add a virLogMessage alternative taking va_list args

2012-05-02 Thread Daniel P. Berrange
From: Daniel P. Berrange berra...@redhat.com Allow the logging APIs to be called with a va_list for format args, instead of requiring var-args usage. * src/util/logging.h, src/util/logging.c: Add virLogVMessage --- src/util/logging.c | 29 - src/util/logging.h |

Re: [libvirt] [PATCH 01/12] Add a virLogMessage alternative taking va_list args

2012-05-02 Thread Michal Privoznik
On 02.05.2012 13:44, Daniel P. Berrange wrote: From: Daniel P. Berrange berra...@redhat.com Allow the logging APIs to be called with a va_list for format args, instead of requiring var-args usage. * src/util/logging.h, src/util/logging.c: Add virLogVMessage --- src/util/logging.c | 29

Re: [libvirt] [PATCH 01/12] Add a virLogMessage alternative taking va_list args

2012-05-02 Thread Eric Blake
On 05/02/2012 09:22 AM, Michal Privoznik wrote: On 02.05.2012 13:44, Daniel P. Berrange wrote: From: Daniel P. Berrange berra...@redhat.com Allow the logging APIs to be called with a va_list for format args, instead of requiring var-args usage. * src/util/logging.h, src/util/logging.c: Add