pluginloader: When a plugin is blacklisted, output a GST_ERROR line.
authorJan Schmidt <thaytan@noraisin.net>
Mon, 19 Oct 2009 11:29:35 +0000 (12:29 +0100)
committerJan Schmidt <thaytan@noraisin.net>
Mon, 19 Oct 2009 11:30:07 +0000 (12:30 +0100)
gst/gstpluginloader.c

index fd062d4..f69c1e3 100644 (file)
@@ -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 */