From a9d20141b95521900c0e234a676cec27e4ee87b1 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 27 May 2020 17:13:20 +0200 Subject: [PATCH] core: log changes to the profile timestamp --- src/settings/nm-settings-connection.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/settings/nm-settings-connection.c b/src/settings/nm-settings-connection.c index 1c3e7fe34..c6348cb49 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)); }