plugin-loader: Increase log level for warning about plugin features that failed to load

Since we can't get rid of all unmet dependencies (at least not in every
possible plugin configuration) the message is more confusing than
helpful.  In particular because a detailed warning about plugin features
that failed to load due to unmet dependencies is only logged on level 2.
This commit is contained in:
Tobias Brunner
2015-03-09 15:45:29 +01:00
parent 18597950fa
commit 1bfa5e0cac
+3 -3
View File
@@ -1291,9 +1291,9 @@ METHOD(plugin_loader_t, status, void,
if (this->stats.failed)
{
dbg(DBG_LIB, level, "unable to load %d plugin feature%s (%d due to "
"unmet dependencies)", this->stats.failed,
this->stats.failed == 1 ? "" : "s", this->stats.depends);
DBG2(DBG_LIB, "unable to load %d plugin feature%s (%d due to unmet "
"dependencies)", this->stats.failed,
this->stats.failed == 1 ? "" : "s", this->stats.depends);
}
}
}