From 613f73b8227b08ab78a0feeb1edf6abf741d1250 Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Sat, 18 Dec 2010 20:34:22 +0200 Subject: [PATCH] log as error a condition that causes project load failure --- daemon/room_load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/room_load.c b/daemon/room_load.c index b03fa07d..c0a619a2 100644 --- a/daemon/room_load.c +++ b/daemon/room_load.c @@ -386,7 +386,7 @@ static void callback_elstart(void * data, const char * el, const char ** attr) context_ptr->port = ladish_graph_find_port_by_uuid(ladish_studio_get_jack_graph(), uuid, false, room_ptr->graph); if (context_ptr->port == NULL) { - log_info("app port \"%s\" with uuid %s not found in the jack graph", name_dup, uuid_str); + log_error("app port \"%s\" with uuid %s not found in the jack graph", name_dup, uuid_str); context_ptr->error = XML_TRUE; ladish_graph_dump(ladish_studio_get_jack_graph()); goto free;