More verbose output on module loading failure
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Tue, 26 May 2009 17:57:19 +0000 (20:57 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Tue, 26 May 2009 17:57:19 +0000 (20:57 +0300)
src/rygel/rygel-plugin-loader.vala

index 123b33e..973b681 100644 (file)
@@ -150,7 +150,8 @@ public class Rygel.PluginLoader : Object {
 
         ModuleInitFunc module_init = (ModuleInitFunc) function;
         if (module_init == null) {
-            warning ("Failed to load module from path: '%s'\n", file_path);
+            warning ("Failed to find entry point function 'module_init'" +
+                     " in module loaded from path: '%s'\n", file_path);
 
             return;
         }