[gnome-dictionary] Add debugging message for new source creation
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-dictionary] Add debugging message for new source creation
- Date: Sat, 30 Sep 2017 15:56:01 +0000 (UTC)
commit 653afa1cca6e782d9a26117c27254d79da358af3
Author: Emmanuele Bassi <ebassi gnome org>
Date: Sat Sep 30 16:53:05 2017 +0100
Add debugging message for new source creation
We can leave it there, as it's going to be ignored unless
G_MESSAGES_DEBUG is set.
src/gdict-source-dialog.c | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/src/gdict-source-dialog.c b/src/gdict-source-dialog.c
index 0a01fa6..f955078 100644
--- a/src/gdict-source-dialog.c
+++ b/src/gdict-source-dialog.c
@@ -310,7 +310,7 @@ build_new_source (GdictSourceDialog *dialog)
error = NULL;
data = gdict_source_to_data (source, &length, &error);
- if (error)
+ if (error != NULL)
{
gdict_show_gerror_dialog (GTK_WINDOW (dialog),
_("Unable to create a source file"),
@@ -325,9 +325,15 @@ build_new_source (GdictSourceDialog *dialog)
filename = g_build_filename (config_dir, name, NULL);
g_free (config_dir);
g_free (name);
-
+
+ g_debug ("Saving new source '%s' (%s) at '%s'",
+ gdict_source_get_description (source),
+ gdict_source_get_name (source),
+ filename);
+
g_file_set_contents (filename, data, length, &error);
- if (error)
+
+ if (error != NULL)
gdict_show_gerror_dialog (GTK_WINDOW (dialog),
_("Unable to save source file"),
error);
@@ -435,7 +441,7 @@ on_dialog_response (GtkDialog *dialog,
gpointer user_data)
{
GError *err = NULL;
-
+
switch (response_id)
{
case GTK_RESPONSE_ACCEPT:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]