tune logging

This commit is contained in:
Ron Pedde 2006-06-03 07:47:40 +00:00
parent bb9c3fe75b
commit 5a9ecc0191
1 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ void _plugin_readlock(void) {
*current_count = 0; *current_count = 0;
} }
DPRINTF(E_DBG,L_PLUG,"Current lock level: %d\n",*current_count); DPRINTF(E_SPAM,L_PLUG,"Current lock level: %d\n",*current_count);
if(!(*current_count)) { if(!(*current_count)) {
(*current_count)++; (*current_count)++;
pthread_setspecific(_plugin_lock_key,(void*)current_count); pthread_setspecific(_plugin_lock_key,(void*)current_count);
@ -205,7 +205,7 @@ void _plugin_writelock(void) {
*current_count = 0; *current_count = 0;
} }
DPRINTF(E_DBG,L_PLUG,"Current lock level: %d\n",*current_count); DPRINTF(E_SPAM,L_PLUG,"Current lock level: %d\n",*current_count);
if(!(*current_count)) { if(!(*current_count)) {
(*current_count)++; (*current_count)++;