diff options
| author | Matt Corallo <[email protected]> | 2014-12-22 21:35:52 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2015-04-24 02:28:47 -0700 |
| commit | 1ec900a29e115503ca3a70eba28f2de33ca06228 (patch) | |
| tree | c9afc60d6f629efcb7a43c2bfb6ac590c839c4bd /src/sync.cpp | |
| parent | Add merkle blocks test (diff) | |
| download | discoin-1ec900a29e115503ca3a70eba28f2de33ca06228.tar.xz discoin-1ec900a29e115503ca3a70eba28f2de33ca06228.zip | |
Remove broken+useless lock/unlock log prints
Diffstat (limited to 'src/sync.cpp')
| -rw-r--r-- | src/sync.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/sync.cpp b/src/sync.cpp index e28caee8e..a42293996 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -86,7 +86,6 @@ static void push_lock(void* c, const CLockLocation& locklocation, bool fTry) if (lockstack.get() == NULL) lockstack.reset(new LockStack); - LogPrint("lock", "Locking: %s\n", locklocation.ToString()); dd_mutex.lock(); (*lockstack).push_back(std::make_pair(c, locklocation)); @@ -113,10 +112,6 @@ static void push_lock(void* c, const CLockLocation& locklocation, bool fTry) static void pop_lock() { - if (fDebug) { - const CLockLocation& locklocation = (*lockstack).rbegin()->second; - LogPrint("lock", "Unlocked: %s\n", locklocation.ToString()); - } dd_mutex.lock(); (*lockstack).pop_back(); dd_mutex.unlock(); |