summaryrefslogtreecommitdiff
path: root/src/background.c
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2023-10-26 17:16:27 +0100
committerSimon McVittie <smcv@debian.org>2023-10-26 17:16:27 +0100
commit44aabb66ffdaef8991af1e42367e43e68b1c72da (patch)
treedae1b3d4f09c83e8163a92e1c555b9034fb3470e /src/background.c
parent5a9a28a6401ea244527a07276852b3bbcc1051af (diff)
parent37a6f7c8b8e08b9861f05e172cd4e0d07a832c4d (diff)
New upstream version 1.18.1
Diffstat (limited to 'src/background.c')
-rw-r--r--src/background.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/background.c b/src/background.c
index b09ad47..688ec5c 100644
--- a/src/background.c
+++ b/src/background.c
@@ -474,7 +474,11 @@ notify_background_done (GObject *source,
if (nd->perm != PERMISSION_ASK)
nd->perm = PERMISSION_NO;
- g_debug ("Kill app %s (pid %d)", nd->app_id, nd->child_pid);
+ g_message ("Terminating app %s (process %d) because the app does not "
+ "have permission to run in the background. You may be able to "
+ "grant this app the permission to run in background in the "
+ "system settings of your desktop environment.",
+ nd->app_id, nd->child_pid);
kill (nd->child_pid, SIGKILL);
}