summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-04-22 10:20:23 +0200
committerThomas Haller <thaller@redhat.com>2015-04-22 10:26:34 +0200
commitb04c99da0bbde6e8f27f718bea46b9b2787c3236 (patch)
tree92bd36f64f5547ad5b10d20b145fdff5464b7b9f
parentd231162fbc3ed193d3e0a4a35d668dd5deb97f6c (diff)
downloadNetworkManager-b04c99da0bbde6e8f27f718bea46b9b2787c3236.tar.gz
ibft/logging: don't localize logging stagements
We don't localize any other nm-logging messages either.
-rw-r--r--src/settings/plugins/ibft/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/settings/plugins/ibft/plugin.c b/src/settings/plugins/ibft/plugin.c
index 303971e05b..632c4df14b 100644
--- a/src/settings/plugins/ibft/plugin.c
+++ b/src/settings/plugins/ibft/plugin.c
@@ -63,7 +63,7 @@ read_connections (SCPluginIbft *self)
NMIbftConnection *connection;
if (!read_ibft_blocks ("/sbin/iscsiadm", &blocks, &error)) {
- nm_log_dbg (LOGD_SETTINGS, _("ibft: failed to read iscsiadm records: %s"), error->message);
+ nm_log_dbg (LOGD_SETTINGS, "ibft: failed to read iscsiadm records: %s", error->message);
g_error_free (error);
return;
}
@@ -71,13 +71,13 @@ read_connections (SCPluginIbft *self)
for (iter = blocks; iter; iter = iter->next) {
connection = nm_ibft_connection_new (iter->data, &error);
if (connection) {
- nm_log_info (LOGD_SETTINGS, _("ibft: read connection '%s'"),
+ nm_log_info (LOGD_SETTINGS, "ibft: read connection '%s'",
nm_connection_get_id (NM_CONNECTION (connection)));
g_hash_table_insert (priv->connections,
g_strdup (nm_connection_get_uuid (NM_CONNECTION (connection))),
connection);
} else {
- nm_log_warn (LOGD_SETTINGS, _("ibft: failed to read iscsiadm record: %s"), error->message);
+ nm_log_warn (LOGD_SETTINGS, "ibft: failed to read iscsiadm record: %s", error->message);
g_clear_error (&error);
}
}