]> git.sur5r.net Git - i3/i3/commitdiff
libi3/font: Log the used font
authorQuentin Glidic <sardemff7+git@sardemff7.net>
Sun, 12 Aug 2012 10:20:51 +0000 (12:20 +0200)
committerQuentin Glidic <sardemff7+git@sardemff7.net>
Mon, 13 Aug 2012 09:39:30 +0000 (11:39 +0200)
libi3/font.c

index d9683e547dcf9e9118496469011d9ad5f88b2bd2..0688bdbce5cc17a86f8a9be9cd44a60fd534ac48 100644 (file)
@@ -39,7 +39,15 @@ static bool load_pango_font(i3Font *font, const char *desc) {
     /* Load the font description */
     font->specific.pango_desc = pango_font_description_from_string(desc);
     if (!font->specific.pango_desc)
+    {
+        ELOG("Could not open font %s with Pango, fallback to X font.\n", desc);
         return false;
+    }
+
+    LOG("Using Pango font %s, size %d",
+        pango_font_description_get_family(font->specific.pango_desc),
+        pango_font_description_get_size(font->specific.pango_desc)
+        );
 
     /* We cache root_visual_type here, since you must call
      * load_pango_font before any other pango function
@@ -178,6 +186,8 @@ i3Font load_font(const char *pattern, const bool fallback) {
         }
     }
 
+    LOG("Using X font %s", pattern);
+
     /* Get information (height/name) for this font */
     if (!(font.specific.xcb.info = xcb_query_font_reply(conn, info_cookie, NULL)))
         errx(EXIT_FAILURE, "Could not load font \"%s\"", pattern);