Make warnings about parse problems in .desktop files "debug" messages. Most people...
authorDana Jansens <danakj@orodu.net>
Mon, 8 Aug 2011 20:11:05 +0000 (16:11 -0400)
committerDana Jansens <danakj@orodu.net>
Sun, 16 Oct 2011 22:56:02 +0000 (18:56 -0400)
obt/ddparse.c

index b2d61c0b8b7bec141a8db7c7b91f26367d7423ab..e83bfdea6ff00b8f9384eb098dcd06e9b6a8131e 100644 (file)
@@ -73,9 +73,9 @@ static void parse_error(const gchar *m, const ObtDDParse *const parse,
                         gboolean *error)
 {
     if (!parse->filename)
-        g_warning("%s at line %lu of input", m, parse->lineno);
+        g_debug("%s at line %lu of input", m, parse->lineno);
     else
-        g_warning("%s at line %lu of file %s",
+        g_debug("%s at line %lu of file %s",
                   m, parse->lineno, parse->filename);
     if (error) *error = TRUE;
 }