Index: uspace/app/netecho/netecho.c
===================================================================
--- uspace/app/netecho/netecho.c	(revision 92e717c9d468d4db5d9376fe439bbfb40cb7f31e)
+++ uspace/app/netecho/netecho.c	(revision d9f53877c83a2ddc2668567168e75a24406af55c)
@@ -241,4 +241,6 @@
 		/* Accept a socket if a stream socket is used */
 		addrlen = sizeof(address_buf);
+		if (verbose)
+			printf("accept()\n");
             	socket_id = accept(listening_id, (void *) address_buf, &addrlen);
 		if (socket_id <= 0) {
@@ -258,4 +260,6 @@
 
 		/* Receive a message to echo */
+		if (verbose)
+			printf("recvfrom()\n");
 		rcv_size = recvfrom(socket_id, data, size, 0, address,
 		    &addrlen);
@@ -298,8 +302,12 @@
 			/* Answer the request either with the static reply or the original data */
 			if (type == SOCK_STREAM) {
+				if (verbose)
+					printf("send()\n");
 				rc = send(socket_id, reply ? reply : data, reply ? reply_length : length, 0);
 				if (rc != EOK)
 					socket_print_error(stderr, rc, "Socket send: ", "\n");
 			} else {
+				if (verbose)
+					printf("sendto()\n");
 				rc = sendto(socket_id, reply ? reply : data, reply ? reply_length : length, 0, address, addrlen);
 				if (rc != EOK)
