aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2012-06-22 10:13:31 -0700
committerJeff Garzik <jgarzik@exmulti.com>2012-06-22 10:13:31 -0700
commitd62a1947be5350ed60066ccacc7aba43bbdf48fb (patch)
treebe8d16631130b297b04ebc5903048b8b900e75db
parentcb1fcde2f4eadc82cf8a954bb290c8d5e59257dc (diff)
parentd07eaba195984410522b78884ff7ff72ec2ecc78 (diff)
downloadbitcoin-d62a1947be5350ed60066ccacc7aba43bbdf48fb.tar.xz
Merge pull request #1458 from jgarzik/tracenet
Introduce -tracenet option, thereby quieting some redundant debug messages
-rw-r--r--src/init.cpp7
-rw-r--r--src/main.cpp3
-rw-r--r--src/net.h3
-rw-r--r--src/util.cpp1
-rw-r--r--src/util.h1
5 files changed, 13 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 4ab7bdc429..21c32a6d67 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -358,6 +358,13 @@ bool AppInit2()
// ********************************************************* Step 3: parameter-to-internal-flags
fDebug = GetBoolArg("-debug");
+
+ // -debug implies fDebug*
+ if (fDebug)
+ fDebugNet = true;
+ else
+ fDebugNet = GetBoolArg("-debugnet");
+
bitdb.SetDetach(GetBoolArg("-detachdb", false));
#if !defined(WIN32) && !defined(QT_GUI)
diff --git a/src/main.cpp b/src/main.cpp
index 6765ed5f05..a49d2a06b4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3151,7 +3151,8 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
const CInv& inv = (*pto->mapAskFor.begin()).second;
if (!AlreadyHave(txdb, inv))
{
- printf("sending getdata: %s\n", inv.ToString().c_str());
+ if (fDebugNet)
+ printf("sending getdata: %s\n", inv.ToString().c_str());
vGetData.push_back(inv);
if (vGetData.size() >= 1000)
{
diff --git a/src/net.h b/src/net.h
index c9c965722e..f059c7a448 100644
--- a/src/net.h
+++ b/src/net.h
@@ -296,7 +296,8 @@ public:
// We're using mapAskFor as a priority queue,
// the key is the earliest time the request can be sent
int64& nRequestTime = mapAlreadyAskedFor[inv];
- printf("askfor %s %"PRI64d"\n", inv.ToString().c_str(), nRequestTime);
+ if (fDebugNet)
+ printf("askfor %s %"PRI64d"\n", inv.ToString().c_str(), nRequestTime);
// Make sure not to reuse time indexes to keep things in the same order
int64 nNow = (GetTime() - 1) * 1000000;
diff --git a/src/util.cpp b/src/util.cpp
index b07c9c1b7e..4b1c1ae116 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -58,6 +58,7 @@ using namespace std;
map<string, string> mapArgs;
map<string, vector<string> > mapMultiArgs;
bool fDebug = false;
+bool fDebugNet = false;
bool fPrintToConsole = false;
bool fPrintToDebugger = false;
bool fRequestShutdown = false;
diff --git a/src/util.h b/src/util.h
index c9b2b2f17c..21bec68ae0 100644
--- a/src/util.h
+++ b/src/util.h
@@ -105,6 +105,7 @@ inline void Sleep(int64 n)
extern std::map<std::string, std::string> mapArgs;
extern std::map<std::string, std::vector<std::string> > mapMultiArgs;
extern bool fDebug;
+extern bool fDebugNet;
extern bool fPrintToConsole;
extern bool fPrintToDebugger;
extern bool fRequestShutdown;