summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-11-01 23:42:18 +0900
committerMarcel Holtmann <marcel@holtmann.org>2009-11-01 23:42:18 +0900
commit3c24593c0cc017e5f40d0499c76034db289f8a6d (patch)
tree1f5805b0d9327b3391d2a4b6706bf8314b49cfb0 /plugins
parentf92888fae70be1c5ceab3db83a60a61737842d3b (diff)
downloadofono-3c24593c0cc017e5f40d0499c76034db289f8a6d.tar.bz2
Use ofono_info() for AT command debugging
Diffstat (limited to 'plugins')
-rw-r--r--plugins/calypso.c6
-rw-r--r--plugins/g1.c2
-rw-r--r--plugins/hfp.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/calypso.c b/plugins/calypso.c
index 6552eb63..eba55dd5 100644
--- a/plugins/calypso.c
+++ b/plugins/calypso.c
@@ -88,17 +88,17 @@ static void calypso_debug(const char *str, void *data)
{
guint dlc = GPOINTER_TO_UINT(data);
- DBG("DLC%u: %s", dlc, str);
+ ofono_info("DLC%u: %s", dlc, str);
}
static void calypso_mux_debug(const char *str, void *data)
{
- DBG("MUX: %s", str);
+ ofono_info("MUX: %s", str);
}
static void calypso_setup_debug(const char *str, void *data)
{
- DBG("Setup: %s", str);
+ ofono_info("Setup: %s", str);
}
static int calypso_probe(struct ofono_modem *modem)
diff --git a/plugins/g1.c b/plugins/g1.c
index aeb38b10..e47f5c66 100644
--- a/plugins/g1.c
+++ b/plugins/g1.c
@@ -52,7 +52,7 @@
static void g1_debug(const char *str, void *data)
{
- DBG("%s", str);
+ ofono_info("%s", str);
}
/* Detect hardware, and initialize if found */
diff --git a/plugins/hfp.c b/plugins/hfp.c
index 5e94a055..fc171ba5 100644
--- a/plugins/hfp.c
+++ b/plugins/hfp.c
@@ -59,7 +59,7 @@ static int hfp_disable(struct ofono_modem *modem);
static void hfp_debug(const char *str, void *user_data)
{
- ofono_debug("%s", str);
+ ofono_info("%s", str);
}
static void cind_status_cb(gboolean ok, GAtResult *result,