aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
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.h
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.h')
-rw-r--r--src/net.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/net.h b/src/net.h
index 3755c765d3..d776860fb5 100644
--- a/src/net.h
+++ b/src/net.h
@@ -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()