Remove another unneeded syslog()

git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@426 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2005-02-10 05:29:03 +00:00
parent a224c667ab
commit 2fa2299b32

View File

@@ -1134,10 +1134,7 @@ static DBusMessage *nm_dbus_nm_set_scanning_enabled (DBusConnection *connection,
dbus_error_init (&err); dbus_error_init (&err);
if (dbus_message_get_args (message, &err, DBUS_TYPE_BOOLEAN, &enabled, DBUS_TYPE_INVALID)) if (dbus_message_get_args (message, &err, DBUS_TYPE_BOOLEAN, &enabled, DBUS_TYPE_INVALID))
{
data->data->scanning_enabled = enabled; data->data->scanning_enabled = enabled;
syslog (LOG_ERR, "Set scanning to %d\n", enabled);
}
return NULL; return NULL;
} }