Index: uspace/app/gfxdemo/gfxdemo.c
===================================================================
--- uspace/app/gfxdemo/gfxdemo.c	(revision 983052cc42855347de98acc1f926d82ed26c7a5d)
+++ uspace/app/gfxdemo/gfxdemo.c	(revision bd2fab516ef36c7305a1bdf70b5a741480cdde9a)
@@ -1,4 +1,4 @@
 /*
- * Copyright (c) 2022 Jiri Svoboda
+ * Copyright (c) 2023 Jiri Svoboda
  * All rights reserved.
  *
@@ -1041,10 +1041,8 @@
 	errno_t rc;
 
-	printf("Init console..\n");
 	con = console_init(stdin, stdout);
 	if (con == NULL)
 		return EIO;
 
-	printf("Create console GC\n");
 	rc = console_gc_create(con, stdout, &cgc);
 	if (rc != EOK)
@@ -1076,6 +1074,4 @@
 	errno_t rc;
 
-	printf("Init UI..\n");
-
 	rc = ui_create(display_spec, &ui);
 	if (rc != EOK) {
@@ -1141,6 +1137,4 @@
 	errno_t rc;
 
-	printf("Init display..\n");
-
 	rc = display_open(display_svc, &display);
 	if (rc != EOK) {
@@ -1186,5 +1180,4 @@
 static void wnd_close_event(void *arg)
 {
-	printf("Close event\n");
 	quit = true;
 }
@@ -1192,5 +1185,4 @@
 static void wnd_kbd_event(void *arg, kbd_event_t *event)
 {
-	printf("Keyboard event type=%d key=%d\n", event->type, event->key);
 	if (event->type == KEY_PRESS)
 		quit = true;
@@ -1199,5 +1191,4 @@
 static void uiwnd_close_event(ui_window_t *window, void *arg)
 {
-	printf("Close event\n");
 	quit = true;
 }
@@ -1205,5 +1196,4 @@
 static void uiwnd_kbd_event(ui_window_t *window, void *arg, kbd_event_t *event)
 {
-	printf("Keyboard event type=%d key=%d\n", event->type, event->key);
 	if (event->type == KEY_PRESS)
 		quit = true;
