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:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user