diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-09-23 13:42:04 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-09-23 13:42:04 +0200 |
| commit | 0961c2fc0d0f9d8a0dee46f8e2020ac479d5b997 (patch) | |
| tree | 94e89c52d16c031ba12017bfa56d51e5bd9d1b33 /src/main.cpp | |
| parent | show balance in sendcoins screen (issue #24) (diff) | |
| parent | Merge pull request #527 from TheBlueMatt/gitian-downloader (diff) | |
| download | discoin-0961c2fc0d0f9d8a0dee46f8e2020ac479d5b997.tar.xz discoin-0961c2fc0d0f9d8a0dee46f8e2020ac479d5b997.zip | |
Merge branch 'master' of https://github.com/bitcoin/bitcoin
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index fc520df8e..e732ddcf5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1751,9 +1751,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) { static map<unsigned int, vector<unsigned char> > mapReuseKey; RandAddSeedPerfmon(); - if (fDebug) + if (fDebug) { printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str()); - printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size()); + printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size()); + } if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0) { printf("dropmessagestest DROPPING RECV MESSAGE\n"); @@ -1945,7 +1946,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) pfrom->AddInventoryKnown(inv); bool fAlreadyHave = AlreadyHave(txdb, inv); - printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new"); + if (fDebug) + printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new"); if (!fAlreadyHave) pfrom->AskFor(inv); |