Index: uspace/app/tmon/test.c
===================================================================
--- uspace/app/tmon/test.c	(revision d37dd3b977a9ab4c34061f2f4d5ce2f92afcebf1)
+++ uspace/app/tmon/test.c	(revision 0fbe27d1d60c8b0ddc8c6b3bcb01514adf2a9e1b)
@@ -96,4 +96,8 @@
 static int stress_intr_in(async_exch_t *exch, int cycles, size_t size)
 {
+	printf("Executing interrupt in stress test.\n"
+	    "      Packet count: %d\n"
+	    "      Packet size: %ld", cycles, size);
+
 	int rc = usbdiag_stress_intr_in(exch, cycles, size);
 	if (rc) {
@@ -107,4 +111,8 @@
 static int stress_intr_out(async_exch_t *exch, int cycles, size_t size)
 {
+	printf("Executing interrupt out stress test.\n"
+	    "      Packet count: %d\n"
+	    "      Packet size: %ld", cycles, size);
+
 	int rc = usbdiag_stress_intr_out(exch, cycles, size);
 	if (rc) {
@@ -118,4 +126,8 @@
 static int stress_bulk_in(async_exch_t *exch, int cycles, size_t size)
 {
+	printf("Executing bulk in stress test.\n"
+	    "      Packet count: %d\n"
+	    "      Packet size: %ld", cycles, size);
+
 	int rc = usbdiag_stress_bulk_in(exch, cycles, size);
 	if (rc) {
@@ -129,4 +141,8 @@
 static int stress_bulk_out(async_exch_t *exch, int cycles, size_t size)
 {
+	printf("Executing bulk out stress test.\n"
+	    "      Packet count: %d\n"
+	    "      Packet size: %ld", cycles, size);
+
 	int rc = usbdiag_stress_bulk_out(exch, cycles, size);
 	if (rc) {
