diff --git a/ChangeLog b/ChangeLog index 1a364f4a53..db0f0e7d33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Dec 22 11:51:29 CET 2008 Daniel Veillard + + * src/uml_conf.c: another logging conversion + Mon Dec 22 11:47:44 CET 2008 Daniel Veillard * src/node_device_devkit.c src/uml_driver.c src/virterror.c: diff --git a/src/uml_conf.c b/src/uml_conf.c index 8b564be056..a7c0271638 100644 --- a/src/uml_conf.c +++ b/src/uml_conf.c @@ -46,7 +46,8 @@ #include "verify.h" -#define umlLog(level, msg...) fprintf(stderr, msg) +#define umlLog(level, msg, ...) \ + virLogMessage(__FILE__, level, 0, msg, __VA_ARGS__) virCapsPtr umlCapsInit(void) { struct utsname utsname;