From 1e9554e5dd7e8020bc80b083adfdce456f055533 Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Fri, 17 Dec 2004 20:17:20 +0000 Subject: [PATCH] Tune down logging on adding/freeing daap atoms --- src/daap-proto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daap-proto.c b/src/daap-proto.c index 18f10e75..7c152ea5 100644 --- a/src/daap-proto.c +++ b/src/daap-proto.c @@ -73,7 +73,7 @@ DAAP_BLOCK *daap_add_formatted(DAAP_BLOCK *parent, char *tag, DAAP_BLOCK *current,*last; DAAP_BLOCK *pnew; - DPRINTF(E_DBG,L_DAAP,"Adding daap tag %s\n",tag); + DPRINTF(E_SPAM,L_DAAP,"Adding daap tag %s\n",tag); pnew = daap_get_new(); if(!pnew) return NULL; @@ -322,7 +322,7 @@ void daap_free(DAAP_BLOCK *root) { DAAP_BLOCK *pnext; while(root) { - DPRINTF(E_DBG,L_DAAP,"Freeing %c%c%c%c\n",root->tag[0],root->tag[1], + DPRINTF(E_SPAM,L_DAAP,"Freeing %c%c%c%c\n",root->tag[0],root->tag[1], root->tag[2],root->tag[3]); if((root->size) && (root->free))