Don't log error on on dbus call failures

Some calls are supposed to fail under expected conditions.
For example query of value for key that is not known.
The users of dbus_call() should log the error when needed
This commit is contained in:
Nedko Arnaudov 2010-09-26 19:44:35 +03:00
parent 32c12e9909
commit 7ef9d25f5c
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ dbus_call(
if (reply_ptr == NULL)
{
log_error("calling method '%s' failed, error is '%s'", method, g_dbus_error.message);
//log_error("calling method '%s' failed, error is '%s'", method, g_dbus_error.message);
dbus_error_free(&g_dbus_error);
goto fail;
}