* Use more appropriate log levels for a couple messages.

This commit is contained in:
Justin Maggard 2011-04-12 20:55:32 +00:00
parent 7f51618f71
commit ceeb9479be

View File

@ -434,6 +434,7 @@ close:
model = GetValueFromNameValueList(&xml, "modelName");
if( model )
{
DPRINTF(E_DEBUG, L_SSDP, "Model: %s\n", model);
if (strstr(model, "Roku SoundBridge"))
{
type = ERokuSoundBridge;
@ -453,7 +454,7 @@ close:
continue;
get_remote_mac(dest.sin_addr, clients[client].mac);
clients[client].addr = dest.sin_addr;
DPRINTF(E_DEBUG, L_HTTP, "Added client [%d/%s/%02X:%02X:%02X:%02X:%02X:%02X] to cache slot %d.\n",
DPRINTF(E_DEBUG, L_SSDP, "Added client [%d/%s/%02X:%02X:%02X:%02X:%02X:%02X] to cache slot %d.\n",
type, inet_ntoa(clients[client].addr),
clients[client].mac[0], clients[client].mac[1], clients[client].mac[2],
clients[client].mac[3], clients[client].mac[4], clients[client].mac[5], client);