better debug information
This commit is contained in:
parent
8805fed666
commit
70d447f58f
1 changed files with 5 additions and 1 deletions
|
@ -133,7 +133,11 @@ void Device::reloadPlugins()
|
||||||
&& (m_incomingCapabilities & outgoingInterfaces).isEmpty()
|
&& (m_incomingCapabilities & outgoingInterfaces).isEmpty()
|
||||||
&& (m_outgoingCapabilities & incomingInterfaces).isEmpty()
|
&& (m_outgoingCapabilities & incomingInterfaces).isEmpty()
|
||||||
) {
|
) {
|
||||||
qCWarning(KDECONNECT_CORE) << "not loading " << pluginName << "because of unmatched capabilities";
|
if (!m_incomingCapabilities.isEmpty() || !m_outgoingCapabilities.isEmpty()) {
|
||||||
|
qCWarning(KDECONNECT_CORE) << "not loading " << pluginName << "because of unmatched capabilities" <<
|
||||||
|
outgoingInterfaces << incomingInterfaces;
|
||||||
|
}
|
||||||
|
|
||||||
unsupportedPlugins.append(pluginName);
|
unsupportedPlugins.append(pluginName);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue