[rygel] Module load failure message should be a warning



commit 47eb8c1ac5df76574440a9845a7acbfe30df9665
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Wed May 27 13:47:41 2009 +0300

    Module load failure message should be a warning
---
 src/rygel/rygel-plugin-loader.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/rygel/rygel-plugin-loader.vala b/src/rygel/rygel-plugin-loader.vala
index 973b681..209c840 100644
--- a/src/rygel/rygel-plugin-loader.vala
+++ b/src/rygel/rygel-plugin-loader.vala
@@ -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;
         }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]