summaryrefslogtreecommitdiffstats
path: root/src/gprs.c
diff options
context:
space:
mode:
authorPekka Pessi <Pekka.Pessi@nokia.com>2010-08-26 16:08:52 +0300
committerDenis Kenzior <denkenz@gmail.com>2010-08-26 10:38:14 -0500
commit4aa442d36f60ef453433c06d03edb4b047fdff80 (patch)
treefce0e1184a8fa24e59e6462b0847dde472981fc1 /src/gprs.c
parent2778092b8331d4ccc63c805c7f5d141ca2ee55ea (diff)
downloadofono-4aa442d36f60ef453433c06d03edb4b047fdff80.tar.bz2
gprs: add debug info
Diffstat (limited to 'src/gprs.c')
-rw-r--r--src/gprs.c9
1 files changed, 9 insertions, 0 deletions
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 &&