summaryrefslogtreecommitdiff
path: root/serial
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2009-03-24 12:31:10 +0200
committerJohan Hedberg <johan.hedberg@nokia.com>2009-03-24 12:31:10 +0200
commit8e706e2d4fbc2a0edc72aeebd8d90f0cd2db66e8 (patch)
tree8ca7d488ee4182fb94b42ef019b43cc81a62964c /serial
parent434ea1bbed3d38632be1c8e1799b02e16eb0e585 (diff)
downloadbluez-8e706e2d4fbc2a0edc72aeebd8d90f0cd2db66e8.tar.gz
Convert some not-so-important info logs to debug logs
Diffstat (limited to 'serial')
-rw-r--r--serial/port.c4
-rw-r--r--serial/proxy.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/serial/port.c b/serial/port.c
index 43a944715..11ab657ba 100644
--- a/serial/port.c
+++ b/serial/port.c
@@ -204,7 +204,7 @@ static void path_unregister(void *data)
{
struct serial_device *device = data;
- info("Unregistered interface %s on path %s", SERIAL_PORT_INTERFACE,
+ debug("Unregistered interface %s on path %s", SERIAL_PORT_INTERFACE,
device->path);
devices = g_slist_remove(devices, device);
@@ -463,7 +463,7 @@ static struct serial_device *create_serial_device(DBusConnection *conn,
return NULL;
}
- info("Registered interface %s on path %s",
+ debug("Registered interface %s on path %s",
SERIAL_PORT_INTERFACE, path);
return device;
diff --git a/serial/proxy.c b/serial/proxy.c
index d27a7227f..f5733d94e 100644
--- a/serial/proxy.c
+++ b/serial/proxy.c
@@ -700,7 +700,7 @@ static void proxy_path_unregister(gpointer data)
struct serial_proxy *prx = data;
int sk;
- info("Unregistered proxy: %s", prx->address);
+ debug("Unregistered proxy: %s", prx->address);
if (prx->type != TTY_PROXY)
goto done;
@@ -738,7 +738,7 @@ static int register_proxy_object(struct serial_proxy *prx, char *outpath, size_t
if (outpath)
strncpy(outpath, path, size);
- info("Registered proxy: %s", path);
+ debug("Registered proxy: %s", path);
return 0;
}
@@ -1148,7 +1148,7 @@ int proxy_register(DBusConnection *conn, const char *path, bdaddr_t *src)
adapters = g_slist_append(adapters, adapter);
- info("Registered interface %s on path %s",
+ debug("Registered interface %s on path %s",
SERIAL_MANAGER_INTERFACE, path);
return 0;