diff options
author | rbuj <[email protected]> | 2020-12-04 15:00:11 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-12-10 15:35:41 +0100 |
commit | 1cd9731e1da41ea27bba4181bc6c37eb336a0563 (patch) | |
tree | 9006f83c8aca6b9ffff47de954a25efaa82778d4 /geyes/src/themes.c | |
parent | 038ad28fe37ced802e2b76d783692540445da0cc (diff) | |
download | mate-applets-1cd9731e1da41ea27bba4181bc6c37eb336a0563.tar.bz2 mate-applets-1cd9731e1da41ea27bba4181bc6c37eb336a0563.tar.xz |
geyes: Use g_debug instead of printf for logging
Diffstat (limited to 'geyes/src/themes.c')
-rw-r--r-- | geyes/src/themes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/geyes/src/themes.c b/geyes/src/themes.c index cb187ca4..1754b9e3 100644 --- a/geyes/src/themes.c +++ b/geyes/src/themes.c @@ -60,7 +60,7 @@ parse_theme_file (EyesApplet *eyes_applet, gchar *token; if (fgets (line_buf, 512, theme_file) == NULL) - printf ("fgets error\n"); + g_debug ("fgets error"); while (!feof (theme_file)) { token = strtok (line_buf, "="); @@ -94,7 +94,7 @@ parse_theme_file (EyesApplet *eyes_applet, = g_strdup_printf ("%s%s", eyes_applet->theme_dir, token); } if (fgets (line_buf, 512, theme_file) == NULL) - printf ("fgets error\n"); + g_debug ("fgets error"); } } |