diff options
author | Gregory Maxwell <gmaxwell@gmail.com> | 2012-05-14 18:59:28 -0700 |
---|---|---|
committer | Gregory Maxwell <gmaxwell@gmail.com> | 2012-05-14 18:59:28 -0700 |
commit | 20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13 (patch) | |
tree | c727e7b377b14d799fe5fcda718f31462331f041 /src/net.h | |
parent | bb361cc644eb56689b1b0be5da9078d32640bd96 (diff) | |
parent | 0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5 (diff) |
Merge pull request #1262 from Diapolo/no_double_timestamps
no more double timestamps in debug.log
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -319,10 +319,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() |