diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-05-12 00:09:33 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-05-13 14:36:35 +0200 |
commit | 0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5 (patch) | |
tree | 0f33a207943cdaaf5c32bd8beb7c8719ae8c2423 /src/net.h | |
parent | af4006b3f50b571c228987d3fe93998a64b50de5 (diff) |
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.h')
-rw-r--r-- | src/net.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -318,10 +318,8 @@ public: nHeaderStart = vSend.size(); vSend << CMessageHeader(pszCommand, 0); nMessageStart = vSend.size(); - if (fDebug) { - printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str()); + if (fDebug) printf("sending: %s ", pszCommand); - } } void AbortMessage() |