mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 09:47:08 +03:00
- Added some more debug in UPnP
This commit is contained in:
parent
04a716ac91
commit
a5ebc85bdb
1 changed files with 4 additions and 4 deletions
|
@ -1348,7 +1348,7 @@ upnpDiscovery:
|
||||||
// we don't want to spam our logs.
|
// we don't want to spam our logs.
|
||||||
if (EventType != UPNP_DISCOVERY_ADVERTISEMENT_ALIVE) {
|
if (EventType != UPNP_DISCOVERY_ADVERTISEMENT_ALIVE) {
|
||||||
msg.str("Internet Gateway Device Detected.");
|
msg.str("Internet Gateway Device Detected.");
|
||||||
// AddLogLineM(true, logUPnP, msg);
|
qDebug("UPnP: %s", msg.str().c_str());
|
||||||
}
|
}
|
||||||
// Add the root device to our list
|
// Add the root device to our list
|
||||||
upnpCP->AddRootDevice(rootDevice, urlBase,
|
upnpCP->AddRootDevice(rootDevice, urlBase,
|
||||||
|
@ -1460,7 +1460,7 @@ upnpEventSubscriptionExpired:
|
||||||
es_event->PublisherUrl <<
|
es_event->PublisherUrl <<
|
||||||
"' with SID == '" <<
|
"' with SID == '" <<
|
||||||
newSID << "'.";
|
newSID << "'.";
|
||||||
// AddDebugLogLineM(true, logUPnP, msg);
|
qDebug("UPnP: %s", msg.str().c_str());
|
||||||
// In principle, we should test to see if the
|
// In principle, we should test to see if the
|
||||||
// service is the same. But here we only have one
|
// service is the same. But here we only have one
|
||||||
// service, so...
|
// service, so...
|
||||||
|
@ -1468,7 +1468,7 @@ upnpEventSubscriptionExpired:
|
||||||
} else {
|
} else {
|
||||||
msg << "Error: did not find service " <<
|
msg << "Error: did not find service " <<
|
||||||
newSID << " in the service map.";
|
newSID << " in the service map.";
|
||||||
// AddDebugLogLineM(true, logUPnP, msg);
|
qDebug("UPnP: %s", msg.str().c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1530,7 +1530,7 @@ upnpEventSubscriptionExpired:
|
||||||
msg << "error(UPNP_EVENT_SUBSCRIPTION_REQUEST): ";
|
msg << "error(UPNP_EVENT_SUBSCRIPTION_REQUEST): ";
|
||||||
eventSubscriptionRequest:
|
eventSubscriptionRequest:
|
||||||
msg << "This is not a device, event ignored.";
|
msg << "This is not a device, event ignored.";
|
||||||
// AddDebugLogLineM(true, logUPnP, msg);
|
qDebug("UPnP: %s", msg.str().c_str());
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// Humm, this is not good, we forgot to handle something...
|
// Humm, this is not good, we forgot to handle something...
|
||||||
|
|
Loading…
Reference in a new issue