aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Lassalle <andrewlassalle@chromium.org>2021-05-15 05:47:22 -0700
committerAndrew Lassalle <andrewlassalle@chromium.org>2021-05-15 06:14:58 -0700
commit7711e84af9354d1dfee64674a3e928d13586d5b1 (patch)
treed803713445e04085ec41ebd6e117dbed2a7bd76e /src
parentc39d1d2fbc62dca759efcf8dc5b80c69a45269de (diff)
iface-modem-3gpp: Add verbose logging for initial eps bearer
Print a debug message when the user provides initial eps bearer settings that match the ones being used. This will save time to whomever is experimenting with initial eps bearer settings.
Diffstat (limited to 'src')
-rw-r--r--src/mm-iface-modem-3gpp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mm-iface-modem-3gpp.c b/src/mm-iface-modem-3gpp.c
index 786372a4..2a4028a6 100644
--- a/src/mm-iface-modem-3gpp.c
+++ b/src/mm-iface-modem-3gpp.c
@@ -1129,6 +1129,7 @@ set_initial_eps_bearer_settings_auth_ready (MMBaseModem
old_config = mm_bearer_properties_new_from_dictionary (old_dictionary, NULL);
if (old_config && mm_bearer_properties_cmp (ctx->config, old_config, MM_BEARER_PROPERTIES_CMP_FLAGS_EPS)) {
+ mm_obj_dbg (self, "Skipping initial eps bearer configuration. Same configuration provided");
mm_gdbus_modem3gpp_complete_set_initial_eps_bearer_settings (ctx->skeleton, ctx->invocation);
handle_set_initial_eps_bearer_settings_context_free (ctx);
} else {