From 03d8d0c52efb8a2f340858bd0cfaff6e087d1c7a Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Thu, 19 May 2011 23:17:46 +0300 Subject: [PATCH] ladishd: fix the previous commit The previous commit accidentally removed a log dump call. --- daemon/virtualizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/virtualizer.c b/daemon/virtualizer.c index d2c34e60..7d2de1bf 100644 --- a/daemon/virtualizer.c +++ b/daemon/virtualizer.c @@ -330,7 +330,7 @@ static void client_appeared(void * context, uint64_t id, const char * jack_name) log_info("found existing client"); if (ladish_client_get_jack_id(client) != 0) { - ladish_graph_dump(virtualizer_ptr->jack_graph); + log_error("Ignoring client with duplicate name '%s' ('%s')", name, jack_name); goto exit; }