summaryrefslogtreecommitdiff
path: root/mesh/manager.c
diff options
context:
space:
mode:
authorInga Stotland <inga.stotland@intel.com>2020-05-30 21:41:25 -0700
committerBrian Gix <brian.gix@intel.com>2020-06-01 10:23:10 -0700
commitcb3088b5986fd6317847e9631630ab1c09778626 (patch)
treec42f036f0c2cddda267112df25ea63231450e0a5 /mesh/manager.c
parentc0509b127a1a37ceb7a01e73e124766766e9684f (diff)
downloadbluez-cb3088b5986fd6317847e9631630ab1c09778626.tar.gz
mesh: Debug output clean up
This changes l_info() to l_debug() for recurring cases and removes some excessive debug output.
Diffstat (limited to 'mesh/manager.c')
-rw-r--r--mesh/manager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesh/manager.c b/mesh/manager.c
index a7383e4d5..2be471088 100644
--- a/mesh/manager.c
+++ b/mesh/manager.c
@@ -219,7 +219,7 @@ static void add_start(void *user_data, int err)
{
struct l_dbus_message *reply;
- l_info("Start callback");
+ l_debug("Start callback");
if (err == MESH_ERROR_NONE)
reply = l_dbus_message_new_method_return(add_pending->msg);
@@ -270,8 +270,8 @@ static struct l_dbus_message *add_node_call(struct l_dbus *dbus,
add_pending->agent = node_get_agent(node);
if (!node_is_provisioner(node) || (add_pending->agent == NULL)) {
- l_info("Provisioner: %d", node_is_provisioner(node));
- l_info("Agent: %p", add_pending->agent);
+ l_debug("Provisioner: %d", node_is_provisioner(node));
+ l_debug("Agent: %p", add_pending->agent);
reply = dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED,
"Missing Interfaces");
goto fail;