summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2022-07-30 09:41:29 +0200
committermouse <[email protected]>2022-08-15 10:10:04 +0800
commitfddc54212f8dd66707cf036956b1cd41cdc0cfd3 (patch)
treea1e604ee01664ea9f5a3f5fe5e896a49489fcbd3
parent8936a1bbf95bc0ecfb9c7223435b5e7755aa96c7 (diff)
downloadcaja-fddc54212f8dd66707cf036956b1cd41cdc0cfd3.tar.bz2
caja-fddc54212f8dd66707cf036956b1cd41cdc0cfd3.tar.xz
caja-extensions: print filename when caja failed to open keys file
-rw-r--r--libcaja-private/caja-extensions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcaja-private/caja-extensions.c b/libcaja-private/caja-extensions.c
index 59d1f8c6..2ccc9a87 100644
--- a/libcaja-private/caja-extensions.c
+++ b/libcaja-private/caja-extensions.c
@@ -67,7 +67,7 @@ extension_new (gchar *filename, gboolean state, gboolean python, GObject *module
}
else
{
- caja_debug_log (FALSE, CAJA_DEBUG_LOG_DOMAIN_USER, "Error loading keys from file: %s\n", error->message);
+ caja_debug_log (FALSE, CAJA_DEBUG_LOG_DOMAIN_USER, "Error loading keys from file \"%s\": %s\n", extension_filename, error->message);
g_error_free (error);
}
g_free (extension_filename);