Use ofono_info() for AT command debugging

This commit is contained in:
Marcel Holtmann 2009-11-01 23:42:18 +09:00
parent f92888fae7
commit 3c24593c0c
3 changed files with 5 additions and 5 deletions

View File

@ -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)

View File

@ -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 */

View File

@ -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,