diff --git a/apps/EchoServer.cpp b/apps/EchoServer.cpp
index 081f7c85e3dd1aa2d22b14b3b9256839839a98ef..660dcddee6a6183fe9a11340b7ce3635c3825e98 100644
--- a/apps/EchoServer.cpp
+++ b/apps/EchoServer.cpp
@@ -63,6 +63,7 @@ auto main(int argc, char* argv[]) -> int {
 
 			if (unlikely(bytes_recv == 5 && strncmp("quit\n", buf, bytes_recv) == 0)) {
 				quit = true;
+				std::cout << "Echoserver received 'quit' command from client" << std::endl;
 				Runtime::getRuntime()->initiateTermination();
 				break;
 			}