From: Klaus Ethgen Date: Mon, 18 Dec 2017 09:54:40 +0000 (+0100) Subject: Some dir debuggings X-Git-Tag: v1.4~9 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=668f95b014116040a92e60ea632c6131f600253e Some dir debuggings --- diff --git a/src/ui_fileops.c b/src/ui_fileops.c index a58777d8..a479010e 100644 --- a/src/ui_fileops.c +++ b/src/ui_fileops.c @@ -194,6 +194,8 @@ const gchar *homedir(void) if (!home) home = path_to_utf8(g_get_home_dir()); + DEBUG_1("Home directory: %s", home); + return home; } @@ -206,6 +208,8 @@ static gchar *xdg_dir_get(const gchar *key, const gchar *fallback) return g_build_filename(homedir(), fallback, NULL); } + DEBUG_1("Got xdg %s: %s", key, dir); + return path_to_utf8(dir); }