aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-12 00:09:33 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-13 14:36:35 +0200
commit0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5 (patch)
tree0f33a207943cdaaf5c32bd8beb7c8719ae8c2423 /src/net.cpp
parentaf4006b3f50b571c228987d3fe93998a64b50de5 (diff)
downloadbitcoin-0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5.tar.xz
ensure that no double timestamps show up in the debug.log, by removing manual timestamps from the source (now only -logtimestamps parameter adds timestamps to debug.log)
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 82a215c68a..234a5c5cdb 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -516,8 +516,6 @@ void CNode::CloseSocketDisconnect()
fDisconnect = true;
if (hSocket != INVALID_SOCKET)
{
- if (fDebug)
- printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
printf("disconnecting node %s\n", addrName.c_str());
closesocket(hSocket);
hSocket = INVALID_SOCKET;