Make sure we flag JOIN/LEAVE messages as really verbose debug output.

This commit is contained in:
Jan Vidar Krey 2009-10-06 18:28:16 +02:00
parent 234f04f495
commit 17416def35

View File

@ -295,11 +295,11 @@ static int handle(struct ADC_client* client, enum ADC_client_callback_type type,
break; break;
case ADC_CLIENT_USER_JOIN: case ADC_CLIENT_USER_JOIN:
bot_output(client, LVL_DEBUG, " JOIN: %s", data->user->name); bot_output(client, LVL_VERBOSE, " JOIN: %s", data->user->name);
break; break;
case ADC_CLIENT_USER_QUIT: case ADC_CLIENT_USER_QUIT:
bot_output(client, LVL_DEBUG, " QUIT"); bot_output(client, LVL_VERBOSE, " QUIT");
break; break;
case ADC_CLIENT_SEARCH_REQ: case ADC_CLIENT_SEARCH_REQ: