]> git.sur5r.net Git - i3/i3/commitdiff
i3-dump-log: make log message a little more clear (#3618)
authorMichael Stapelberg <stapelberg@users.noreply.github.com>
Tue, 12 Feb 2019 08:22:26 +0000 (09:22 +0100)
committerGitHub <noreply@github.com>
Tue, 12 Feb 2019 08:22:26 +0000 (09:22 +0100)
This came up when trying to debug an issue.

i3-dump-log/main.c
testcases/t/207-shmlog.t

index e9901f8ee3f2c90c0e9aa37a864a6f96e08aad63..4f15f26f841e87a8c488fb615f7e4560892be43a 100644 (file)
@@ -155,7 +155,7 @@ int main(int argc, char *argv[]) {
             exit(1);
         }
         if (root_atom_contents("I3_CONFIG_PATH", conn, screen) != NULL) {
-            fprintf(stderr, "i3-dump-log: ERROR: i3 is running, but SHM logging is not enabled. Enabling SHM log until cancelled\n\n");
+            fprintf(stderr, "i3-dump-log: i3 is running, but SHM logging is not enabled. Enabling SHM log now while i3-dump-log is running\n\n");
             ipcfd = ipc_connect(NULL);
             const char *enablecmd = "debuglog on; shmlog 5242880";
             if (ipc_send_message(ipcfd, strlen(enablecmd),
index c2b2ebaa3c1294c5c0b2652b004799062a7250ab..94f4bdea3000e2a0dfc263e1c381a00f11b6f41e 100644 (file)
@@ -31,7 +31,7 @@ run [ 'i3-dump-log' ],
     '>', \$stdout,
     '2>', \$stderr;
 
-like($stderr, qr#^i3-dump-log: ERROR: i3 is running, but SHM logging is not enabled\.#,
+like($stderr, qr#^i3-dump-log: i3 is running, but SHM logging is not enabled\.#,
     'shm logging not enabled');
 
 ################################################################################
@@ -73,7 +73,7 @@ run [ 'i3-dump-log' ],
     '>', \$stdout,
     '2>', \$stderr;
 
-like($stderr, qr#^i3-dump-log: ERROR: i3 is running, but SHM logging is not enabled\.#,
+like($stderr, qr#^i3-dump-log: i3 is running, but SHM logging is not enabled\.#,
     'shm logging not enabled');
 
 done_testing;