Index: uspace/srv/console/console.c
===================================================================
--- uspace/srv/console/console.c	(revision bd804653e43355acb79fecc133c2780b8a5c5a1b)
+++ uspace/srv/console/console.c	(revision 78d0da8a9f118d7192ec3a48bbc2d5f6427fa13a)
@@ -47,4 +47,5 @@
 #include <screenbuffer.h>
 #include <sys/mman.h>
+#include <stdio.h>
 
 #include "gcons.h"
@@ -52,5 +53,5 @@
 #define MAX_KEYREQUESTS_BUFFERED 32
 
-#define NAME "CONSOLE"
+#define NAME "console"
 
 /** Index of currently used virtual console.
@@ -475,4 +476,6 @@
 int main(int argc, char *argv[])
 {
+	printf(NAME ": HelenOS Console service\n");
+	
 	ipcarg_t phonehash;
 	int kbd_phone;
@@ -551,8 +554,9 @@
 
 	/* Register at NS */
-	if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, 0, &phonehash) != 0) {
+	if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, 0, &phonehash) != 0)
 		return -1;
-	}
-	
+	
+	// FIXME: avoid connectiong to itself, keep using klog
+	// printf(NAME ": Accepting connections\n");
 	async_manager();
 
