summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2008-09-11 21:28:14 +0300
committerJohan Hedberg <johan.hedberg@nokia.com>2008-09-11 21:28:14 +0300
commitc1bf8e7f46db78c7cc760d22b5c30fd2c6643620 (patch)
tree8ef89b1814ac7c1dc556b86efa6b69ce0de197b9
parent0520063076684676e231592b2c5ad68723e0dcfa (diff)
Fix info calls that really should be debug instead
-rw-r--r--audio/headset.c2
-rw-r--r--audio/unix.c14
2 files changed, 8 insertions, 8 deletions
diff --git a/audio/headset.c b/audio/headset.c
index f0eb0b7b..102d0bca 100644
--- a/audio/headset.c
+++ b/audio/headset.c
@@ -513,7 +513,7 @@ static void sco_connect_cb(GIOChannel *chan, int err, const bdaddr_t *src,
sk = g_io_channel_unix_get_fd(chan);
- info("SCO fd=%d", sk);
+ debug("SCO fd=%d", sk);
hs->sco = chan;
p->io = NULL;
diff --git a/audio/unix.c b/audio/unix.c
index 10e6021e..5d5ab206 100644
--- a/audio/unix.c
+++ b/audio/unix.c
@@ -152,7 +152,7 @@ static int unix_sendmsg_fd(int sock, int fd)
static void unix_ipc_sendmsg(struct unix_client *client,
const bt_audio_msg_header_t *msg)
{
- info("Audio API: sending %s", bt_audio_strmsg(msg->msg_type));
+ debug("Audio API: sending %s", bt_audio_strmsg(msg->msg_type));
if (send(client->sock, msg, BT_AUDIO_IPC_PACKET_SIZE, 0) < 0)
error("Error %s(%d)", strerror(errno), errno);
@@ -789,7 +789,7 @@ static int handle_sco_transport(struct unix_client *client,
{
client->interface = g_strdup(AUDIO_HEADSET_INTERFACE);
- info("config sco - device = %s access_mode = %u", req->device,
+ debug("config sco - device = %s access_mode = %u", req->device,
req->access_mode);
return 0;
@@ -814,7 +814,7 @@ static int handle_a2dp_transport(struct unix_client *client,
client->caps = g_slist_append(client->caps, media_transport);
- info("config a2dp - device = %s access_mode = %u", req->device,
+ debug("config a2dp - device = %s access_mode = %u", req->device,
req->access_mode);
if (req->mpeg_capabilities.frequency) {
@@ -833,7 +833,7 @@ static int handle_a2dp_transport(struct unix_client *client,
media_codec = avdtp_service_cap_new(AVDTP_MEDIA_CODEC, &mpeg_cap,
sizeof(mpeg_cap));
- info("codec mpeg12 - frequency = %u channel_mode = %u "
+ debug("codec mpeg12 - frequency = %u channel_mode = %u "
"layer = %u crc = %u mpf = %u bitrate = %u",
mpeg_cap.frequency, mpeg_cap.channel_mode,
mpeg_cap.layer, mpeg_cap.crc, mpeg_cap.mpf,
@@ -854,7 +854,7 @@ static int handle_a2dp_transport(struct unix_client *client,
media_codec = avdtp_service_cap_new(AVDTP_MEDIA_CODEC, &sbc_cap,
sizeof(sbc_cap));
- info("codec sbc - frequency = %u channel_mode = %u "
+ debug("codec sbc - frequency = %u channel_mode = %u "
"allocation = %u subbands = %u blocks = %u "
"bitpool = %u", sbc_cap.frequency,
sbc_cap.channel_mode, sbc_cap.allocation_method,
@@ -1008,7 +1008,7 @@ static gboolean client_cb(GIOChannel *chan, GIOCondition cond, gpointer data)
}
if ((type = bt_audio_strmsg(msghdr->msg_type)))
- info("Audio API: received %s", type);
+ debug("Audio API: received %s", type);
switch (msghdr->msg_type) {
case BT_GETCAPABILITIES_REQ:
@@ -1119,7 +1119,7 @@ int unix_init(void)
server_cb, NULL);
g_io_channel_unref(io);
- info("Unix socket created: %d", sk);
+ debug("Unix socket created: %d", sk);
return 0;
}