diff options
-rw-r--r-- | src/app-section.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/app-section.c b/src/app-section.c index fcb75d9..f922dca 100644 --- a/src/app-section.c +++ b/src/app-section.c @@ -387,8 +387,10 @@ activate_cb (GSimpleAction *action, GError *error = NULL; if (!g_app_info_launch (G_APP_INFO (priv->appinfo), NULL, NULL, &error)) { - g_warning("Unable to execute application for desktop file '%s'", - g_desktop_app_info_get_filename (priv->appinfo)); + g_warning("Unable to execute application for desktop file '%s': %s", + g_desktop_app_info_get_filename (priv->appinfo), + error->message); + g_error_free (error); } } |