[gtk/wip/hadess/quiet-broadway] broadway: Quiet initialisation failures
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/hadess/quiet-broadway] broadway: Quiet initialisation failures
- Date: Mon, 11 Oct 2021 12:01:49 +0000 (UTC)
commit e6ae3b8a2befa0be0752310ca862da532cfb6bd4
Author: Bastien Nocera <hadess hadess net>
Date: Mon Oct 11 13:55:35 2021 +0200
broadway: Quiet initialisation failures
Broadway is the only GTK+ backend that throws an error on stderr when
failing to initialise, which causes problems when gtk_init_check() is
used and unexpected error output is generated.
This causes hotdoc to fail when generating a GTK plugin's documentation
instead of failing quietly.
"Unable to init server: Could not connect: Connection refused"
gdk/broadway/gdkdisplay-broadway.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gdk/broadway/gdkdisplay-broadway.c b/gdk/broadway/gdkdisplay-broadway.c
index f4e77e802b..dff9f796a4 100644
--- a/gdk/broadway/gdkdisplay-broadway.c
+++ b/gdk/broadway/gdkdisplay-broadway.c
@@ -213,7 +213,7 @@ _gdk_broadway_display_open (const char *display_name)
broadway_display->server = _gdk_broadway_server_new (display, display_name, &error);
if (broadway_display->server == NULL)
{
- g_printerr ("Unable to init Broadway server: %s\n", error->message);
+ g_debug ("Unable to init Broadway server: %s\n", error->message);
g_error_free (error);
return NULL;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]