rygel: Show warning on missing config
authorJens Georg <jensg@openismus.com>
Fri, 29 Mar 2013 21:03:10 +0000 (22:03 +0100)
committerJens Georg <jensg@openismus.com>
Fri, 29 Mar 2013 21:03:21 +0000 (22:03 +0100)
src/rygel/rygel-user-config.vala

index c39fbe8..aa2e101 100644 (file)
@@ -236,7 +236,9 @@ public class Rygel.UserConfig : GLib.Object, Configuration {
 
             debug ("Loaded user configuration from file '%s'", local_path);
         } catch (Error error) {
-            debug ("Failed to load user configuration from file '%s': %s",
+            /// TRANSLATORS: First %s is the file's path, second is the error
+            //  message
+            warning _("Failed to load user configuration from file '%s': %s",
                    local_path,
                    error.message);
             this.key_file = new KeyFile ();