diff options
author | Konstantin Kostiuk | 2022-05-23 21:16:44 +0200 |
---|---|---|
committer | Konstantin Kostiuk | 2022-05-25 11:12:02 +0200 |
commit | 323f3a8f22ee4eecf427a9322bd0fb449c33abd7 (patch) | |
tree | f68346e3843cab1099f32b95fb05405ba56edca1 /qga | |
parent | qga: add guest-get-diskstats command for Linux guests (diff) | |
download | qemu-323f3a8f22ee4eecf427a9322bd0fb449c33abd7.tar.gz qemu-323f3a8f22ee4eecf427a9322bd0fb449c33abd7.tar.xz qemu-323f3a8f22ee4eecf427a9322bd0fb449c33abd7.zip |
trivial: qga: Log version on start
Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20220523191644.823726-2-kkostiuk@redhat.com>
Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Diffstat (limited to 'qga')
-rw-r--r-- | qga/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qga/main.c b/qga/main.c index 3b9546c185..c373fec3ee 100644 --- a/qga/main.c +++ b/qga/main.c @@ -1271,6 +1271,8 @@ static GAState *initialize_agent(GAConfig *config, int socket_activation) g_log_set_fatal_mask(NULL, G_LOG_LEVEL_ERROR); ga_enable_logging(s); + g_debug("Guest agent version %s started", QEMU_FULL_VERSION); + #ifdef _WIN32 /* On win32 the state directory is application specific (be it the default * or a user override). We got past the command line parsing; let's create |