summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-05-27 17:13:20 +0200
committerThomas Haller <thaller@redhat.com>2020-06-03 18:25:33 +0200
commita9d20141b95521900c0e234a676cec27e4ee87b1 (patch)
tree2e973992b5133eee0ba300e1c9a8c346afdad045
parentc3db3e0044c2a05be8cf311424ddc9c52062cd1e (diff)
downloadNetworkManager-a9d20141b95521900c0e234a676cec27e4ee87b1.tar.gz
core: log changes to the profile timestamp
-rw-r--r--src/settings/nm-settings-connection.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/settings/nm-settings-connection.c b/src/settings/nm-settings-connection.c
index 1c3e7fe34c..c6348cb492 100644
--- a/src/settings/nm-settings-connection.c
+++ b/src/settings/nm-settings-connection.c
@@ -2151,6 +2151,9 @@ nm_settings_connection_update_timestamp (NMSettingsConnection *self,
priv->timestamp = timestamp;
priv->timestamp_set = TRUE;
+ _LOGT ("timestamp: set timestamp %"G_GUINT64_FORMAT,
+ timestamp);
+
if (!priv->kf_db_timestamps)
return;
@@ -2191,10 +2194,10 @@ _nm_settings_connection_register_kf_dbs (NMSettingsConnection *self,
if (timestamp != G_MAXUINT64) {
priv->timestamp = timestamp;
priv->timestamp_set = TRUE;
- _LOGT ("read timestamp %"G_GUINT64_FORMAT" from keyfile database \"%s\"",
+ _LOGT ("timestamp: read timestamp %"G_GUINT64_FORMAT" from keyfile database \"%s\"",
timestamp, nm_key_file_db_get_filename (priv->kf_db_timestamps));
} else
- _LOGT ("no timestamp from keyfile database \"%s\"",
+ _LOGT ("timestamp: no timestamp from keyfile database \"%s\"",
nm_key_file_db_get_filename (priv->kf_db_timestamps));
}