tests: basic-event-loop: Silence debug message

There is currently a debug printf which is always shown when a mainloop
event is triggered. This is unlikely to be useful unless one is
debugging the event loop code.

Signed-off-by: Christophe Fergeau <cfergeau@redhat.com>
This commit is contained in:
Christophe Fergeau 2018-02-27 17:29:24 +01:00
parent 6bc2b39a01
commit 1a230cdac0

View File

@ -46,7 +46,7 @@ GMainContext *basic_event_loop_get_context(void)
static void event_loop_channel_event(int event, SpiceChannelEventInfo *info)
{
DPRINTF(0, "channel event con, type, id, event: %d, %d, %d, %d",
DPRINTF(1, "channel event con, type, id, event: %d, %d, %d, %d",
info->connection_id, info->type, info->id, event);
}