Skip to content
Snippets Groups Projects
Commit 5213b04f authored by Steve Lhomme's avatar Steve Lhomme Committed by Felix Paul Kühne
Browse files

modules: log the capability of modules removed

parent 79720f46
No related branches found
No related tags found
1 merge request!2215modules: log the capability of modules removed
Pipeline #241313 canceled with stage
in 15 minutes and 29 seconds
......@@ -297,7 +297,8 @@ module_t *module_need(vlc_object_t *obj, const char *cap, const char *name,
#undef module_unneed
void module_unneed(vlc_object_t *obj, module_t *module)
{
msg_Dbg(obj, "removing module \"%s\"", module_get_object(module));
msg_Dbg(obj, "removing \"%s\" module \"%s\"", module_get_capability(module),
module_get_object(module));
var_Destroy(obj, "module-name");
if (module->deactivate != NULL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment