diff options
| author | Gregory Maxwell <[email protected]> | 2012-05-14 18:59:28 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-05-14 18:59:28 -0700 |
| commit | 20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13 (patch) | |
| tree | c727e7b377b14d799fe5fcda718f31462331f041 /src/net.cpp | |
| parent | Merge pull request #906 from sje397/ValidateMessage (diff) | |
| parent | ensure that no double timestamps show up in the debug.log, by removing manual... (diff) | |
| download | discoin-20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13.tar.xz discoin-20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13.zip | |
Merge pull request #1262 from Diapolo/no_double_timestamps
no more double timestamps in debug.log
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index e48b30095..636db2952 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -526,8 +526,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; |