From e3e6a3f2c422a6b82b234f575a6b3bad459e5e0b Mon Sep 17 00:00:00 2001 From: Treeki Date: Wed, 22 Jan 2014 09:31:30 +0100 Subject: add window management, move hacky Python client over to PyQt5 --- socketcommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'socketcommon.cpp') diff --git a/socketcommon.cpp b/socketcommon.cpp index e98b837..897bc58 100644 --- a/socketcommon.cpp +++ b/socketcommon.cpp @@ -135,7 +135,7 @@ void SocketRWCommon::writeAction() { } if (amount > 0) { - printf("[fd=%d] Wrote %d bytes\n", sock, amount); + printf("[fd=%d] Wrote %d bytes out of %d\n", sock, amount, outputBuf.size()); outputBuf.trimFromStart(amount); } else if (amount == 0) printf("Sent 0!\n"); -- cgit v1.2.3