improved error message on jmcore::create() failures

This commit is contained in:
Nedko Arnaudov 2011-09-15 10:59:07 +03:00
parent 3b69e81c76
commit 3af230cad5
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ bool jmcore_proxy_create_link(bool midi, const char * input_port_name, const cha
if (!cdbus_call(0, JMCORE_SERVICE_NAME, JMCORE_OBJECT_PATH, JMCORE_IFACE, "create", "bss", &dbus_midi, &input_port_name, &output_port_name, ""))
{
log_error("jmcore::create() failed.");
log_error("jmcore::create() failed: %s", cdbus_call_last_error_get_message());
return false;
}