about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2021-04-16 19:14:40 +0200
committerMichael Vetter <jubalh@iodoru.org>2021-04-16 19:14:40 +0200
commite1249d9bbbe6a7a0741c8a83697f7bf962f4f82a (patch)
tree26ed5cf5f79f1423eb805e16923efdad9d774a1b /src
parent8be46422d2ca5afff675ef3f7a2117c097a642a7 (diff)
downloadprofani-tty-e1249d9bbbe6a7a0741c8a83697f7bf962f4f82a.tar.gz
Editor: improve error messages
Diffstat (limited to 'src')
-rw-r--r--src/command/cmd_funcs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c
index 9c9674cc..fc38a2b0 100644
--- a/src/command/cmd_funcs.c
+++ b/src/command/cmd_funcs.c
@@ -9316,7 +9316,7 @@ cmd_editor(ProfWin* window, const char* const command, gchar** args)
 {
     xmpp_ctx_t* const ctx = connection_get_ctx();
     if (!ctx) {
-        log_debug("Editor: No connection");
+        log_debug("Editor: no connection");
         return TRUE;
     }
 
@@ -9329,7 +9329,7 @@ cmd_editor(ProfWin* window, const char* const command, gchar** args)
 
     // Check if file exists and create file
     if (g_file_test(filename, G_FILE_TEST_EXISTS)) {
-        cons_show("Editor: The temp file exists");
+        cons_show("Editor: temp file exists already");
         return TRUE;
     }
 
@@ -9339,14 +9339,14 @@ cmd_editor(ProfWin* window, const char* const command, gchar** args)
                                            G_FILE_CREATE_PRIVATE, NULL,
                                            &creation_error);
     if (creation_error) {
-        cons_show_error("Editor: Error during file creation");
+        cons_show_error("Editor: could not create temp file");
         return TRUE;
     }
     g_object_unref(fos);
 
     char* editor = prefs_get_string(PREF_COMPOSE_EDITOR);
     if (!g_file_test(editor, G_FILE_TEST_EXISTS)) {
-        cons_show_error("Editor: editor %s not exists", editor);
+        cons_show_error("Editor: binary %s not exist", editor);
         return TRUE;
     }
 
@@ -9355,7 +9355,7 @@ cmd_editor(ProfWin* window, const char* const command, gchar** args)
     if (pid == 0) {
         int x = execl(editor, editor, g_file_get_path(file), (char*)NULL);
         if (x == -1) {
-            cons_show_error("Failed to exec %s", editor);
+            cons_show_error("Editor:Failed to exec %s", editor);
         }
         _exit(EXIT_FAILURE);
     } else {
@@ -9381,7 +9381,7 @@ cmd_editor(ProfWin* window, const char* const command, gchar** args)
         GError* deletion_error = NULL;
         g_file_delete(file, NULL, &deletion_error);
         if (deletion_error) {
-            cons_show("Editor: Error during file deletion");
+            cons_show("Editor: error during file deletion");
             return TRUE;
         }
         g_object_unref(file);