summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2009-10-19 12:29:35 +0100
committerJan Schmidt <thaytan@noraisin.net>2009-10-19 12:30:07 +0100
commitde199b4d8dc72ccbeb116c1f419ee24c4b212c39 (patch)
tree206437e6037ccdb832919e8f161f23ef7a30fb87
parentadfb63837c6e42b59025efbad03f2feb40fe00a9 (diff)
pluginloader: When a plugin is blacklisted, output a GST_ERROR line.
-rw-r--r--gst/gstpluginloader.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/gstpluginloader.c b/gst/gstpluginloader.c
index fd062d4396..f69c1e3537 100644
--- a/gst/gstpluginloader.c
+++ b/gst/gstpluginloader.c
@@ -255,8 +255,9 @@ restart:
PendingPluginEntry *entry = (PendingPluginEntry *) (cur->data);
if (!plugin_loader_load_and_sync (l, entry)) {
- GST_INFO ("AHA! %s crashes on loading", entry->filename);
/* Create dummy plugin entry to block re-scanning this file */
+ GST_ERROR ("Plugin file %s failed to load. Blacklisting",
+ entry->filename);
plugin_loader_create_blacklist_plugin (l, entry);
l->got_plugin_details = TRUE;
/* Now remove this crashy plugin from the head of the list */