Module load failure message should be a warning
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Wed, 27 May 2009 10:47:41 +0000 (13:47 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Wed, 27 May 2009 10:47:41 +0000 (13:47 +0300)
src/rygel/rygel-plugin-loader.vala

index 973b681..209c840 100644 (file)
@@ -139,7 +139,7 @@ public class Rygel.PluginLoader : Object {
     private void load_module_from_file (string file_path) {
         Module module = Module.open (file_path, ModuleFlags.BIND_LOCAL);
         if (module == null) {
-            debug ("Failed to load module from path: '%s'\n", file_path);
+            warning ("Failed to load module from path: '%s'\n", file_path);
 
             return;
         }