From 4aa442d36f60ef453433c06d03edb4b047fdff80 Mon Sep 17 00:00:00 2001 From: Pekka Pessi Date: Thu, 26 Aug 2010 16:08:52 +0300 Subject: gprs: add debug info --- src/gprs.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src') diff --git a/src/gprs.c b/src/gprs.c index 9b11053a..d57115b8 100644 --- a/src/gprs.c +++ b/src/gprs.c @@ -945,6 +945,9 @@ static void registration_status_cb(const struct ofono_error *error, { struct ofono_gprs *gprs = data; + DBG("%s error %d status %d", __ofono_atom_get_path(gprs->atom), + error->type, status); + if (error->type == OFONO_ERROR_TYPE_NO_ERROR) ofono_gprs_status_notify(gprs, status); @@ -958,6 +961,8 @@ static void gprs_attach_callback(const struct ofono_error *error, void *data) { struct ofono_gprs *gprs = data; + DBG("%s error = %d", __ofono_atom_get_path(gprs->atom), error->type); + gprs->flags &= ~GPRS_FLAG_ATTACHING; if (error->type != OFONO_ERROR_TYPE_NO_ERROR) @@ -1425,6 +1430,8 @@ static GDBusSignalTable manager_signals[] = { void ofono_gprs_detached_notify(struct ofono_gprs *gprs) { + DBG("%s", __ofono_atom_get_path(gprs->atom)); + gprs->driver_attached = FALSE; gprs_attached_update(gprs); @@ -1437,6 +1444,8 @@ void ofono_gprs_detached_notify(struct ofono_gprs *gprs) void ofono_gprs_status_notify(struct ofono_gprs *gprs, int status) { + DBG("%s status %d", __ofono_atom_get_path(gprs->atom), status); + gprs->status = status; if (status != NETWORK_REGISTRATION_STATUS_REGISTERED && -- cgit v1.2.3