aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-08-09 08:19:31 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-08-23 19:10:58 +0200
commitadc221a13d8830fa507454077a68a0eccd1f7b1a (patch)
tree9985f2d1c91d2dca38089a5b42520ea7abe4924f
parent5dc1ba289ea0915da8608d8371128b182bb7f760 (diff)
iface-modem-3gpp: log about which registration check will be run
-rw-r--r--src/mm-iface-modem-3gpp.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mm-iface-modem-3gpp.c b/src/mm-iface-modem-3gpp.c
index 1be84fb5..070ac2c9 100644
--- a/src/mm-iface-modem-3gpp.c
+++ b/src/mm-iface-modem-3gpp.c
@@ -718,10 +718,15 @@ mm_iface_modem_3gpp_run_registration_checks (MMIfaceModem3gpp *self,
MM_IFACE_MODEM_3GPP_PS_NETWORK_SUPPORTED, &ps_supported,
NULL);
+ mm_dbg ("Running registration checks (CS: '%s', PS: '%s')",
+ cs_supported ? "yes" : "no",
+ ps_supported ? "yes" : "no");
+
MM_IFACE_MODEM_3GPP_GET_INTERFACE (self)->run_registration_checks (self,
cs_supported,
ps_supported,
- callback, user_data);
+ callback,
+ user_data);
}
/*****************************************************************************/