Index: kernel/generic/src/ipc/kbox.c
===================================================================
--- kernel/generic/src/ipc/kbox.c	(revision 6b6e423a2ae538739fa7ef8c7313e974cc4e9d97)
+++ kernel/generic/src/ipc/kbox.c	(revision 5b9d80c56d80e68effc3f00989122a73cffa4af0)
@@ -85,8 +85,8 @@
 	
 	if (have_kb_thread) {
-		LOG("join kb.thread..\n");
+		LOG("Join kb.thread.");
 		thread_join(TASK->kb.thread);
 		thread_detach(TASK->kb.thread);
-		LOG("join done\n");
+		LOG("...join done.");
 		TASK->kb.thread = NULL;
 	}
@@ -109,10 +109,8 @@
 	ipl_t ipl;
 
-	LOG("kbox_proc_phone_hungup()\n");
-
 	/* Was it our debugger, who hung up? */
 	if (call->sender == TASK->udebug.debugger) {
 		/* Terminate debugging session (if any). */
-		LOG("kbox: terminate debug session\n");
+		LOG("Terminate debugging session.");
 		ipl = interrupts_disable();
 		spinlock_lock(&TASK->lock);
@@ -121,8 +119,8 @@
 		interrupts_restore(ipl);
 	} else {
-		LOG("kbox: was not debugger\n");
-	}
-
-	LOG("kbox: continue with hangup message\n");
+		LOG("Was not debugger.");
+	}
+
+	LOG("Continue with hangup message.");
 	IPC_SET_RETVAL(call->data, 0);
 	ipc_answer(&TASK->kb.box, call);
@@ -146,5 +144,5 @@
 		mutex_unlock(&TASK->kb.cleanup_lock);
 
-		LOG("phone list is empty\n");
+		LOG("Phone list is empty.");
 		*last = true;
 	} else {
@@ -170,5 +168,5 @@
 
 	(void)arg;
-	LOG("kbox_thread_proc()\n");
+	LOG("Starting.");
 	done = false;
 
@@ -202,5 +200,5 @@
 	}
 
-	LOG("kbox: finished\n");
+	LOG("Exiting.");
 }
 
