diff options
| author | Michael Rotarius <[email protected]> | 2016-08-05 18:34:32 +0200 |
|---|---|---|
| committer | Michael Rotarius <[email protected]> | 2016-08-05 18:34:32 +0200 |
| commit | f13c1bae529cd6e45b4e4b1768a6ab953870fd29 (patch) | |
| tree | aae57be2a2e242a924e7dcd82f7d82405924ade4 /src/net.cpp | |
| parent | Merge #8444: Fix p2p-feefilter.py for changed tx relay behavior (diff) | |
| download | discoin-f13c1bae529cd6e45b4e4b1768a6ab953870fd29.tar.xz discoin-f13c1bae529cd6e45b4e4b1768a6ab953870fd29.zip | |
Move AdvertiseLocal debug output to net category
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 4bbe5059d..c159198ac 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -216,7 +216,7 @@ void AdvertiseLocal(CNode *pnode) } if (addrLocal.IsRoutable()) { - LogPrintf("AdvertiseLocal: advertising address %s\n", addrLocal.ToString()); + LogPrint("net", "AdvertiseLocal: advertising address %s\n", addrLocal.ToString()); pnode->PushAddress(addrLocal); } } |