all: don't include error->code in log messages
authorThomas Haller <thaller@redhat.com>
Sun, 28 Feb 2016 17:12:28 +0000 (18:12 +0100)
committerThomas Haller <thaller@redhat.com>
Thu, 3 Mar 2016 17:54:20 +0000 (18:54 +0100)
GError codes are only unique per domain, so logging the code without
also indicating the domain is not helpful. And anyway, if the error
messages are not distinctive enough to tell the whole story then we
should fix the error messages.

Based-on-patch-by: Dan Winship <danw@gnome.org>
34 files changed:
callouts/nm-dispatcher.c
libnm-core/nm-setting-8021x.c
libnm-glib/nm-active-connection.c
libnm-glib/nm-client.c
libnm-glib/nm-device.c
libnm-glib/nm-object.c
libnm-glib/nm-remote-connection.c
libnm-glib/nm-remote-settings.c
libnm-glib/nm-secret-agent.c
libnm-glib/nm-vpn-plugin.c
libnm-util/nm-setting-8021x.c
libnm-util/nm-utils.c
libnm/nm-object.c
libnm/nm-remote-connection.c
libnm/nm-vpn-plugin-old.c
libnm/nm-vpn-service-plugin.c
src/devices/bluetooth/nm-bluez-device.c
src/devices/bluetooth/nm-device-bt.c
src/devices/wifi/tests/test-wifi-ap-utils.c
src/devices/wwan/nm-device-modem.c
src/devices/wwan/nm-modem.c
src/dhcp-manager/nm-dhcp-dhclient.c
src/dns-manager/nm-dns-dnsmasq.c
src/dns-manager/nm-dns-plugin.c
src/main.c
src/nm-activation-request.c
src/nm-auth-utils.c
src/nm-manager.c
src/ppp-manager/nm-pppd-plugin.c
src/settings/nm-agent-manager.c
src/settings/nm-settings-connection.c
src/settings/plugins/ifupdown/nm-ifupdown-connection.c
src/settings/plugins/keyfile/plugin.c
src/vpn-manager/nm-vpn-connection.c

index de13bd0..7ddffb0 100644 (file)
@@ -549,8 +549,7 @@ script_dispatch (ScriptInfo *script)
                        request->num_scripts_nowait++;
                return TRUE;
        } else {
-               _LOG_S_W (script, "complete: failed to execute script: %s (%d)",
-                         error->message, error->code);
+               _LOG_S_W (script, "complete: failed to execute script: %s", error->message);
                script->result = DISPATCH_RESULT_EXEC_FAILED;
                script->error = g_strdup (error->message);
                request->num_scripts_done++;
@@ -594,8 +593,8 @@ find_scripts (const char *str_action)
                dirname = NMD_SCRIPT_DIR_DEFAULT;
 
        if (!(dir = g_dir_open (dirname, 0, &error))) {
-               g_message ("find-scripts: Failed to open dispatcher directory '%s': (%d) %s",
-                          dirname, error->code, error->message);
+               g_message ("find-scripts: Failed to open dispatcher directory '%s': %s",
+                          dirname, error->message);
                g_error_free (error);
                return NULL;
        }
index 0ecb988..cc8ea66 100644 (file)
@@ -2907,8 +2907,7 @@ set_property (GObject *object, guint prop_id,
                        g_bytes_unref (priv->ca_cert);
                priv->ca_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_CA_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s", error->message);
                        g_error_free (error);
                }
                break;
@@ -2929,8 +2928,7 @@ set_property (GObject *object, guint prop_id,
                        g_bytes_unref (priv->client_cert);
                priv->client_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_CLIENT_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s", error->message);
                        g_error_free (error);
                }
                break;
@@ -2959,8 +2957,7 @@ set_property (GObject *object, guint prop_id,
                        g_bytes_unref (priv->phase2_ca_cert);
                priv->phase2_ca_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_PHASE2_CA_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s", error->message);
                        g_error_free (error);
                }
                break;
@@ -2981,8 +2978,7 @@ set_property (GObject *object, guint prop_id,
                        g_bytes_unref (priv->phase2_client_cert);
                priv->phase2_client_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_PHASE2_CLIENT_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s", error->message);
                        g_error_free (error);
                }
                break;
@@ -3006,8 +3002,7 @@ set_property (GObject *object, guint prop_id,
                        g_bytes_unref (priv->private_key);
                priv->private_key = set_cert_prop_helper (value, NM_SETTING_802_1X_PRIVATE_KEY, &error);
                if (error) {
-                       g_warning ("Error setting private key (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting private key (invalid data): %s", error->message);
                        g_error_free (error);
                }
                break;
@@ -3023,8 +3018,7 @@ set_property (GObject *object, guint prop_id,
                        g_bytes_unref (priv->phase2_private_key);
                priv->phase2_private_key = set_cert_prop_helper (value, NM_SETTING_802_1X_PHASE2_PRIVATE_KEY, &error);
                if (error) {
-                       g_warning ("Error setting private key (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting private key (invalid data): %s", error->message);
                        g_error_free (error);
                }
                break;
index db6e7ab..aa79e1a 100644 (file)
@@ -139,8 +139,8 @@ _nm_active_connection_type_for_path (DBusGConnection *connection,
                else
                        type = NM_TYPE_ACTIVE_CONNECTION;
        } else {
-               g_warning ("Error in getting active connection 'Vpn' property: (%d) %s",
-                          error->code, error->message);
+               g_warning ("Error in getting active connection 'Vpn' property: %s",
+                          error->message);
                g_error_free (error);
                type = G_TYPE_INVALID;
        }
index 3c05646..13d0294 100644 (file)
@@ -513,7 +513,7 @@ activate_info_complete (ActivateInfo *info,
                                  error,
                                  info->user_data);
        } else if (error)
-               g_warning ("Device activation failed: (%d) %s", error->code, error->message);
+               g_warning ("Device activation failed: %s", error->message);
 
        priv->pending_activations = g_slist_remove (priv->pending_activations, info);
 }
@@ -1839,8 +1839,8 @@ constructed (GObject *object)
        GError *error = NULL;
 
        if (!nm_utils_init (&error)) {
-               g_warning ("Couldn't initilize nm-utils/crypto system: %d %s",
-                          error->code, error->message);
+               g_warning ("Couldn't initilize nm-utils/crypto system: %s",
+                          error->message);
                g_clear_error (&error);
        }
 
index 779f4b7..3392d23 100644 (file)
@@ -2198,11 +2198,10 @@ device_operation_cb (DBusGProxy *proxy,
        if (info->fn)
                info->fn (info->device, error, info->user_data);
        else if (error) {
-               g_warning ("%s: device %s %s failed: (%d) %s",
+               g_warning ("%s: device %s %s failed: %s",
                           __func__,
                           nm_object_get_path (NM_OBJECT (info->device)),
                           info->method,
-                          error->code,
                           NM_G_ERROR_MSG (error));
        }
        g_clear_error (&error);
index b252dc7..c7201cd 100644 (file)
@@ -1402,11 +1402,10 @@ _nm_object_reload_property (NMObject *object,
                                             G_TYPE_INVALID,
                                             G_TYPE_VALUE, &value,
                                             G_TYPE_INVALID)) {
-               dbgmsg ("%s: Error getting '%s' for %s: (%d) %s\n",
+               dbgmsg ("%s: Error getting '%s' for %s: %s\n",
                        __func__,
                        prop_name,
                        nm_object_get_path (object),
-                       err->code,
                        err->message);
                g_clear_error (&err);
                return;
index e043fdb..132032f 100644 (file)
@@ -454,10 +454,10 @@ replace_settings (NMRemoteConnection *self, GHashTable *new_settings)
        if (nm_connection_replace_settings (NM_CONNECTION (self), new_settings, &error))
                g_signal_emit (self, signals[UPDATED], 0, new_settings);
        else {
-               g_warning ("%s: error updating connection %s settings: (%d) %s",
+               g_warning ("%s: error updating connection %s settings: %s",
                           __func__,
                           nm_connection_get_path (NM_CONNECTION (self)),
-                          error->code, error->message);
+                          error->message);
                g_clear_error (&error);
 
                g_signal_emit (self, signals[REMOVED], 0);
index 42d90f6..b64743a 100644 (file)
@@ -574,9 +574,8 @@ fetch_connections_done (DBusGProxy *proxy,
                if (   !g_error_matches (error, DBUS_GERROR, DBUS_GERROR_SERVICE_UNKNOWN)
                    && !g_error_matches (error, DBUS_GERROR, DBUS_GERROR_NAME_HAS_NO_OWNER)
                    && priv->service_running) {
-                       g_warning ("%s: error fetching connections: (%d) %s.",
+                       g_warning ("%s: error fetching connections: %s.",
                                   __func__,
-                                  error->code,
                                   error->message ? error->message : "(unknown)");
                }
                g_clear_error (&error);
index 073729d..0a86245 100644 (file)
@@ -330,8 +330,8 @@ verify_request (NMSecretAgent *self,
                g_set_error (error,
                             NM_SECRET_AGENT_ERROR,
                             NM_SECRET_AGENT_ERROR_INVALID_CONNECTION,
-                            "Invalid connection: (%d) %s",
-                            local->code, local->message);
+                            "Invalid connection: %s",
+                            local->message);
                g_clear_error (&local);
        }
 
index 9f941fc..d117e53 100644 (file)
@@ -455,8 +455,7 @@ _connect_generic (NMVPNPlugin *plugin,
        connection = nm_connection_new_from_hash (properties, &local);
        if (!connection) {
                g_set_error (error, NM_VPN_PLUGIN_ERROR, NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
-                            "Invalid connection: (%d) %s",
-                            local->code, local->message);
+                            "Invalid connection: %s", local->message);
                g_clear_error (&local);
                return FALSE;
        }
@@ -537,9 +536,9 @@ impl_vpn_plugin_need_secrets (NMVPNPlugin *plugin,
                g_set_error (err,
                             NM_VPN_PLUGIN_ERROR,
                             NM_VPN_PLUGIN_ERROR_CONNECTION_INVALID,
-                            "The connection was invalid: '%s' / '%s' invalid: %d.",
+                            "The connection was invalid: '%s' / '%s' invalid.",
                             g_type_name (nm_connection_lookup_setting_type_by_quark (cnfh_err->domain)),
-                            cnfh_err->message, cnfh_err->code);
+                            cnfh_err->message);
                g_error_free (cnfh_err);
                return FALSE;
        }
@@ -595,8 +594,8 @@ impl_vpn_plugin_new_secrets (NMVPNPlugin *plugin,
        connection = nm_connection_new_from_hash (properties, &local);
        if (!connection) {
                g_set_error (error, NM_VPN_PLUGIN_ERROR, NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
-                            "Invalid connection: (%d) %s",
-                            local->code, local->message);
+                            "Invalid connection: %s",
+                            local->message);
                g_clear_error (&local);
                return FALSE;
        }
index f476b24..4f974a4 100644 (file)
@@ -2878,8 +2878,8 @@ set_property (GObject *object, guint prop_id,
                }
                priv->ca_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_CA_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s",
+                                  error->message);
                        g_error_free (error);
                }
                break;
@@ -2902,8 +2902,8 @@ set_property (GObject *object, guint prop_id,
                }
                priv->client_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_CLIENT_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s",
+                                  error->message);
                        g_error_free (error);
                }
                break;
@@ -2934,8 +2934,8 @@ set_property (GObject *object, guint prop_id,
                }
                priv->phase2_ca_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_PHASE2_CA_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s",
+                                  error->message);
                        g_error_free (error);
                }
                break;
@@ -2958,8 +2958,8 @@ set_property (GObject *object, guint prop_id,
                }
                priv->phase2_client_cert = set_cert_prop_helper (value, NM_SETTING_802_1X_PHASE2_CLIENT_CERT, &error);
                if (error) {
-                       g_warning ("Error setting certificate (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting certificate (invalid data): %s",
+                                  error->message);
                        g_error_free (error);
                }
                break;
@@ -2985,8 +2985,8 @@ set_property (GObject *object, guint prop_id,
                }
                priv->private_key = set_cert_prop_helper (value, NM_SETTING_802_1X_PRIVATE_KEY, &error);
                if (error) {
-                       g_warning ("Error setting private key (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting private key (invalid data): %s",
+                                  error->message);
                        g_error_free (error);
                }
                break;
@@ -3004,8 +3004,8 @@ set_property (GObject *object, guint prop_id,
                }
                priv->phase2_private_key = set_cert_prop_helper (value, NM_SETTING_802_1X_PHASE2_PRIVATE_KEY, &error);
                if (error) {
-                       g_warning ("Error setting private key (invalid data): (%d) %s",
-                                  error->code, error->message);
+                       g_warning ("Error setting private key (invalid data): %s",
+                                  error->message);
                        g_error_free (error);
                }
                break;
@@ -3726,8 +3726,8 @@ nm_setting_802_1x_class_init (NMSetting8021xClass *setting_class)
 
        /* Initialize crypto lbrary. */
        if (!nm_utils_init (&error)) {
-               g_warning ("Couldn't initilize nm-utils/crypto system: %d %s",
-                          error->code, error->message);
+               g_warning ("Couldn't initilize nm-utils/crypto system: %s",
+                          error->message);
                g_error_free (error);
        }
 }
index e9f20a1..24f233f 100644 (file)
@@ -1514,16 +1514,14 @@ nm_utils_uuid_generate_from_string (const char *s)
        g_return_val_if_fail (s && *s, NULL);
 
        if (!nm_utils_init (&error)) {
-               g_warning ("error initializing crypto: (%d) %s",
-                          error->code, error->message);
+               g_warning ("error initializing crypto: %s", error->message);
                if (error)
                        g_error_free (error);
                return NULL;
        }
 
        if (!crypto_md5_hash (NULL, 0, s, strlen (s), (char *) uuid, sizeof (uuid), &error)) {
-               g_warning ("error generating UUID: (%d) %s",
-                          error->code, error->message);
+               g_warning ("error generating UUID: %s", error->message);
                if (error)
                        g_error_free (error);
                return NULL;
index b35f682..9a5dcd6 100644 (file)
@@ -1280,11 +1280,10 @@ _nm_object_reload_property (NMObject *object,
                                        G_DBUS_CALL_FLAGS_NONE, 15000,
                                        NULL, &err);
        if (!ret) {
-               dbgmsg ("%s: Error getting '%s' for %s: (%d) %s\n",
+               dbgmsg ("%s: Error getting '%s' for %s: %s\n",
                        __func__,
                        prop_name,
                        nm_object_get_path (object),
-                       err->code,
                        err->message);
                g_clear_error (&err);
                return;
index 7a739e2..c4a0b6a 100644 (file)
@@ -564,10 +564,9 @@ replace_settings (NMRemoteConnection *self, GVariant *new_settings)
        GError *error = NULL;
 
        if (!nm_connection_replace_settings (NM_CONNECTION (self), new_settings, &error)) {
-               g_warning ("%s: error updating connection %s settings: (%d) %s",
+               g_warning ("%s: error updating connection %s settings: %s",
                           __func__,
                           nm_connection_get_path (NM_CONNECTION (self)),
-                          error->code,
                           error->message);
                g_clear_error (&error);
        }
index 19f1417..74861ed 100644 (file)
@@ -470,8 +470,8 @@ _connect_generic (NMVpnPluginOld *plugin,
                g_dbus_method_invocation_return_error (context,
                                                       NM_VPN_PLUGIN_ERROR,
                                                       NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
-                                                      "Invalid connection: (%d) %s",
-                                                      error->code, error->message);
+                                                      "Invalid connection: %s",
+                                                      error->message);
                g_clear_error (&error);
        }
 
@@ -611,8 +611,8 @@ impl_vpn_plugin_old_new_secrets (NMVpnPluginOld *plugin,
                g_dbus_method_invocation_return_error (context,
                                                       NM_VPN_PLUGIN_ERROR,
                                                       NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
-                                                      "Invalid connection: (%d) %s",
-                                                      error->code, error->message);
+                                                      "Invalid connection: %s",
+                                                      error->message);
                g_clear_error (&error);
                return;
        }
index 5fbd359..876d479 100644 (file)
@@ -486,8 +486,8 @@ _connect_generic (NMVpnServicePlugin *plugin,
                g_dbus_method_invocation_return_error (context,
                                                       NM_VPN_PLUGIN_ERROR,
                                                       NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
-                                                      "Invalid connection: (%d) %s",
-                                                      error->code, error->message);
+                                                      "Invalid connection: %s",
+                                                      error->message);
                g_clear_error (&error);
                return;
        }
@@ -631,8 +631,8 @@ impl_vpn_service_plugin_new_secrets (NMVpnServicePlugin *plugin,
                g_dbus_method_invocation_return_error (context,
                                                       NM_VPN_PLUGIN_ERROR,
                                                       NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
-                                                      "Invalid connection: (%d) %s",
-                                                      error->code, error->message);
+                                                      "Invalid connection: %s",
+                                                      error->message);
                g_clear_error (&error);
                return;
        }
index 231fd9a..a009746 100644 (file)
@@ -246,8 +246,8 @@ pan_connection_check_create (NMBluezDevice *self)
                priv->pan_connection = added;
                nm_log_dbg (LOGD_BT, "bluez[%s] added new Bluetooth connection for NAP device: '%s' (%s)", priv->path, id, uuid);
        } else {
-               nm_log_warn (LOGD_BT, "bluez[%s] couldn't add new Bluetooth connection for NAP device: '%s' (%s): %d / %s",
-                            priv->path, id, uuid, error->code, error->message);
+               nm_log_warn (LOGD_BT, "bluez[%s] couldn't add new Bluetooth connection for NAP device: '%s' (%s): %s",
+                            priv->path, id, uuid, error->message);
                g_clear_error (&error);
 
        }
index 9ac791f..4ecb56e 100644 (file)
@@ -497,8 +497,8 @@ modem_ip4_config_result (NMModem *modem,
 
        if (error) {
                _LOGW (LOGD_MB | LOGD_IP4 | LOGD_BT,
-                      "retrieving IP4 configuration failed: (%d) %s",
-                      error->code, error->message);
+                      "retrieving IP4 configuration failed: %s",
+                      error->message);
 
                nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
        } else
index 01990be..838368c 100644 (file)
@@ -37,7 +37,7 @@
        if (expected) { \
                if (!success) { \
                        g_assert (error != NULL); \
-                       g_warning ("Failed to complete connection: (%d) %s", error->code, error->message); \
+                       g_warning ("Failed to complete connection: %s", error->message); \
                } \
                g_assert (success == TRUE); \
                g_assert (error == NULL); \
index 8bc631f..a8361c4 100644 (file)
@@ -157,8 +157,8 @@ modem_ip4_config_result (NMModem *modem,
        g_return_if_fail (nm_device_activate_ip4_state_in_conf (device) == TRUE);
 
        if (error) {
-               _LOGW (LOGD_MB | LOGD_IP4, "retrieving IPv4 configuration failed: (%d) %s",
-                      error->code, error->message);
+               _LOGW (LOGD_MB | LOGD_IP4, "retrieving IPv4 configuration failed: %s",
+                      error->message);
 
                nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
        } else {
@@ -184,8 +184,7 @@ modem_ip6_config_result (NMModem *modem,
        g_return_if_fail (nm_device_activate_ip6_state_in_conf (device) == TRUE);
 
        if (error) {
-               _LOGW (LOGD_MB | LOGD_IP6, "retrieving IPv6 configuration failed: (%d) %s",
-                      error->code, error->message);
+               _LOGW (LOGD_MB | LOGD_IP6, "retrieving IPv6 configuration failed: %s", error->message);
 
                nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
                return;
index b01f013..2a8a9d1 100644 (file)
@@ -545,9 +545,8 @@ ppp_stage3_ip_config_start (NMModem *self,
 
                ret = NM_ACT_STAGE_RETURN_POSTPONE;
        } else {
-               nm_log_err (LOGD_PPP, "(%s): error starting PPP: (%d) %s",
+               nm_log_err (LOGD_PPP, "(%s): error starting PPP: %s",
                            nm_modem_get_uid (self),
-                           error->code,
                            error->message);
                g_error_free (error);
 
index feeada6..e5329ef 100644 (file)
@@ -362,9 +362,9 @@ dhclient_start (NMDhcpClient *client,
                        priv->lease_file = g_strdup (g_file_get_path (dst));
                } else {
                        /* Failure; just use the existing leasefile */
-                       nm_log_warn (log_domain, "Failed to copy leasefile %s to %s: (%d) %s",
+                       nm_log_warn (log_domain, "Failed to copy leasefile %s to %s: %s",
                                     g_file_get_path (src), g_file_get_path (dst),
-                                    error->code, error->message);
+                                    error->message);
                        g_clear_error (&error);
                }
                g_object_unref (src);
@@ -378,9 +378,8 @@ dhclient_start (NMDhcpClient *client,
                success = nm_dhcp_dhclient_save_duid (priv->lease_file, escaped, &error);
                g_free (escaped);
                if (!success) {
-                       nm_log_warn (log_domain, "(%s): failed to save DUID to %s: (%d) %s.",
+                       nm_log_warn (log_domain, "(%s): failed to save DUID to %s: %s.",
                                     iface, priv->lease_file,
-                                    error->code,
                                     error->message);
                        g_free (pid_file);
                        return FALSE;
@@ -577,8 +576,8 @@ get_duid (NMDhcpClient *client)
                duid = nm_dhcp_dhclient_read_duid (leasefile, &error);
 
                if (error) {
-                       nm_log_warn (LOGD_DHCP, "Failed to read leasefile '%s': (%d) %s",
-                                    leasefile, error->code, error->message);
+                       nm_log_warn (LOGD_DHCP, "Failed to read leasefile '%s': %s",
+                                    leasefile, error->message);
                        g_clear_error (&error);
                }
                g_free (leasefile);
@@ -589,9 +588,8 @@ get_duid (NMDhcpClient *client)
                nm_log_dbg (LOGD_DHCP, "Looking for default DHCPv6 DUID in '%s'.", priv->def_leasefile);
                duid = nm_dhcp_dhclient_read_duid (priv->def_leasefile, &error);
                if (error) {
-                       nm_log_warn (LOGD_DHCP, "Failed to read leasefile '%s': (%d) %s",
+                       nm_log_warn (LOGD_DHCP, "Failed to read leasefile '%s': %s",
                                     priv->def_leasefile,
-                                    error->code,
                                     error->message);
                        g_clear_error (&error);
                }
index 1a9b715..919fa67 100644 (file)
@@ -283,9 +283,9 @@ update (NMDnsPlugin *plugin,
 
        /* Write out the config file */
        if (!g_file_set_contents (CONFFILE, conf->str, -1, &error)) {
-               nm_log_warn (LOGD_DNS, "Failed to write dnsmasq config file %s: (%d) %s",
+               nm_log_warn (LOGD_DNS, "Failed to write dnsmasq config file %s: %s",
                             CONFFILE,
-                            error->code, error->message);
+                            error->message);
                g_clear_error (&error);
                goto out;
        }
index 0bfd94a..6bdcbce 100644 (file)
@@ -175,8 +175,8 @@ nm_dns_plugin_child_spawn (NMDnsPlugin *self,
                nm_log_dbg (LOGD_DNS, "%s started with pid %d", priv->progname, priv->pid);
                priv->watch_id = g_child_watch_add (priv->pid, (GChildWatchFunc) watch_cb, self);
        } else {
-               nm_log_warn (LOGD_DNS, "Failed to spawn %s: (%d) %s",
-                            priv->progname, error->code, error->message);
+               nm_log_warn (LOGD_DNS, "Failed to spawn %s: %s",
+                            priv->progname, error->message);
                g_clear_error (&error);
        }
 
index 4657ffe..0f074b0 100644 (file)
@@ -358,8 +358,7 @@ main (int argc, char *argv[])
        nm_config_cmd_line_options_free (config_cli);
        config_cli = NULL;
        if (config == NULL) {
-               fprintf (stderr, _("Failed to read configuration: (%d) %s\n"),
-                        error->code,
+               fprintf (stderr, _("Failed to read configuration: %s\n"),
                         error->message);
                exit (1);
        }
@@ -412,9 +411,8 @@ main (int argc, char *argv[])
 
        /* Parse the state file */
        if (!parse_state_file (global_opt.state_file, &net_enabled, &wifi_enabled, &wwan_enabled, &error)) {
-               nm_log_err (LOGD_CORE, "State file %s parsing failed: (%d) %s",
+               nm_log_err (LOGD_CORE, "State file %s parsing failed: %s",
                            global_opt.state_file,
-                           error->code,
                            error->message);
                /* Not a hard failure */
        }
index ed539b6..acc3e4c 100644 (file)
@@ -303,8 +303,8 @@ nm_act_request_set_shared (NMActRequest *req, gboolean shared)
                        nm_log_info (LOGD_SHARING, "Executing: %s", cmd);
                        if (!g_spawn_sync ("/", argv, envp, G_SPAWN_STDOUT_TO_DEV_NULL | G_SPAWN_STDERR_TO_DEV_NULL,
                                           NULL, NULL, NULL, NULL, &status, &error)) {
-                               nm_log_warn (LOGD_SHARING, "Error executing command: (%d) %s",
-                                            error->code, error->message);
+                               nm_log_warn (LOGD_SHARING, "Error executing command: %s",
+                                            error->message);
                                g_clear_error (&error);
                        } else if (WEXITSTATUS (status)) {
                                nm_log_warn (LOGD_SHARING, "** Command returned exit status %d.",
index e741546..928e88b 100644 (file)
@@ -335,8 +335,8 @@ pk_call_cb (GObject *object, GAsyncResult *result, gpointer user_data)
        }
 
        if (error) {
-               nm_log_warn (LOGD_CORE, "error requesting auth for %s: (%d) %s",
-                            call->permission, error->code, error->message);
+               nm_log_warn (LOGD_CORE, "error requesting auth for %s: %s",
+                            call->permission, error->message);
 
                if (!call->chain->error) {
                        call->chain->error = error;
index e463fc0..e7eb7c6 100644 (file)
@@ -1658,9 +1658,8 @@ assume_connection (NMManager *self, NMDevice *device, NMSettingsConnection *conn
        g_object_unref (subject);
 
        if (!active) {
-               _LOGW (LOGD_DEVICE, "assumed connection %s failed to activate: (%d) %s",
+               _LOGW (LOGD_DEVICE, "assumed connection %s failed to activate: %s",
                       nm_connection_get_path (NM_CONNECTION (connection)),
-                      error->code,
                       error->message);
                g_error_free (error);
                return FALSE;
@@ -4009,9 +4008,8 @@ _internal_enable (NMManager *self, gboolean enable)
                                                G_TYPE_BOOLEAN, (gpointer) &enable,
                                                &err)) {
                        /* Not a hard error */
-                       _LOGW (LOGD_SUSPEND, "writing to state file %s failed: (%d) %s.",
+                       _LOGW (LOGD_SUSPEND, "writing to state file %s failed: %s",
                               priv->state_file,
-                              err->code,
                               err->message);
                }
        }
@@ -4971,9 +4969,8 @@ manager_radio_user_toggled (NMManager *self,
                                                "main", rstate->key,
                                                G_TYPE_BOOLEAN, (gpointer) &enabled,
                                                &error)) {
-                       _LOGW (LOGD_CORE, "writing to state file %s failed: (%d) %s.",
+                       _LOGW (LOGD_CORE, "writing to state file %s failed: %s",
                               priv->state_file,
-                              error->code,
                               error->message);
                        g_clear_error (&error);
                }
index a4dd4af..4c16f1f 100644 (file)
@@ -302,9 +302,8 @@ get_credentials (char *username, char *password)
                                      G_DBUS_CALL_FLAGS_NONE, -1,
                                      NULL, &err);
        if (!ret) {
-               g_warning ("nm-ppp-plugin: (%s): could not get secrets: (%d) %s",
+               g_warning ("nm-ppp-plugin: (%s): could not get secrets: %s",
                           __func__,
-                          err->code,
                           err->message);
                g_error_free (err);
                return -1;
index a165f87..455871d 100644 (file)
@@ -263,8 +263,8 @@ agent_register_permissions_done (NMAuthChain *chain,
        if (error) {
                local = g_error_new (NM_AGENT_MANAGER_ERROR,
                                     NM_AGENT_MANAGER_ERROR_PERMISSION_DENIED,
-                                    "Failed to request agent permissions: (%d) %s",
-                                    error->code, error->message);
+                                    "Failed to request agent permissions: %s",
+                                    error->message);
                g_dbus_method_invocation_take_error (context, local);
        } else {
                agent = nm_auth_chain_steal_data (chain, "agent");
@@ -987,9 +987,9 @@ _con_get_request_start_validated (NMAuthChain *chain,
        req->con.chain = NULL;
 
        if (error) {
-               _LOGD (req->current, "agent "LOG_REQ_FMT" MODIFY check error: (%d) %s",
+               _LOGD (req->current, "agent "LOG_REQ_FMT" MODIFY check error: %s",
                       LOG_REQ_ARG (req),
-                      error->code, error->message);
+                      error->message);
                /* Try the next agent */
                request_next_agent (req);
        } else {
index 5f444ea..10aa77a 100644 (file)
@@ -883,10 +883,8 @@ new_secrets_commit_cb (NMSettingsConnection *self,
                        GError *error,
                        gpointer user_data)
 {
-       if (error) {
-               _LOGW ("Error saving new secrets to backing storage: (%d) %s",
-                      error->code, error->message);
-       }
+       if (error)
+               _LOGW ("Error saving new secrets to backing storage: %s", error->message);
 }
 
 static void
@@ -1086,18 +1084,16 @@ get_secrets_done_cb (NMAgentManager *manager,
                        }
 
                } else {
-                       _LOGD ("(%s:%p) failed to update with agent secrets: (%d) %s",
+                       _LOGD ("(%s:%p) failed to update with agent secrets: %s",
                               setting_name,
                               info,
-                              local->code,
                               local->message);
                }
                g_variant_unref (filtered_secrets);
        } else {
-               _LOGD ("(%s:%p) failed to update with existing secrets: (%d) %s",
+               _LOGD ("(%s:%p) failed to update with existing secrets: %s",
                       setting_name,
                       info,
-                      local->code,
                       local->message);
        }
 
@@ -2219,8 +2215,7 @@ nm_settings_connection_read_and_fill_timestamp (NMSettingsConnection *self)
                priv->timestamp = timestamp;
                priv->timestamp_set = TRUE;
        } else {
-               _LOGD ("failed to read connection timestamp: (%d) %s",
-                      err->code, err->message);
+               _LOGD ("failed to read connection timestamp: %s", err->message);
                g_clear_error (&err);
        }
        g_key_file_free (timestamps_file);
index 8122fb2..93b106b 100644 (file)
@@ -95,10 +95,10 @@ constructor (GType type,
        }
 
        if (!ifupdown_update_connection_from_if_block (NM_CONNECTION (object), priv->ifblock, &error)) {
-               nm_log_warn (LOGD_SETTINGS, "%s.%d - invalid connection read from /etc/network/interfaces: (%d) %s",
+               nm_log_warn (LOGD_SETTINGS, "%s.%d - invalid connection read from /etc/network/interfaces: %s",
                             __FILE__,
                             __LINE__,
-                            error->code, error->message);
+                            error->message);
                goto err;
        }
 
index b948023..6003c74 100644 (file)
@@ -404,9 +404,8 @@ read_connections (NMSettingsPlugin *config)
 
        dir = g_dir_open (nm_keyfile_plugin_get_path (), 0, &error);
        if (!dir) {
-               nm_log_warn (LOGD_SETTINGS, "keyfile: cannot read directory '%s': (%d) %s",
+               nm_log_warn (LOGD_SETTINGS, "keyfile: cannot read directory '%s': %s",
                             nm_keyfile_plugin_get_path (),
-                            error->code,
                             error->message);
                g_clear_error (&error);
                return;
index 653b997..54d20b1 100644 (file)
@@ -2224,8 +2224,8 @@ get_secrets_cb (NMSettingsConnection *connection,
                return;
 
        if (error && priv->secrets_idx >= SECRETS_REQ_NEW) {
-               _LOGE ("Failed to request VPN secrets #%d: (%d) %s",
-                      priv->secrets_idx + 1, error->code, error->message);
+               _LOGE ("Failed to request VPN secrets #%d: %s",
+                      priv->secrets_idx + 1, error->message);
                _set_vpn_state (self, STATE_FAILED, NM_VPN_CONNECTION_STATE_REASON_NO_SECRETS, FALSE);
                return;
        }