aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorGregory Maxwell <[email protected]>2012-05-14 18:59:28 -0700
committerGregory Maxwell <[email protected]>2012-05-14 18:59:28 -0700
commit20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13 (patch)
treec727e7b377b14d799fe5fcda718f31462331f041 /src/util.cpp
parentMerge pull request #906 from sje397/ValidateMessage (diff)
parentensure that no double timestamps show up in the debug.log, by removing manual... (diff)
downloaddiscoin-20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13.tar.xz
discoin-20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13.zip
Merge pull request #1262 from Diapolo/no_double_timestamps
no more double timestamps in debug.log
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 170ea0513..823d00a4e 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -147,7 +147,7 @@ void RandAddSeedPerfmon()
{
RAND_add(pdata, nSize, nSize/100.0);
memset(pdata, 0, nSize);
- printf("%s RandAddSeed() %d bytes\n", DateTimeStrFormat("%x %H:%M", GetTime()).c_str(), nSize);
+ printf("RandAddSeed() %d bytes\n", nSize);
}
#endif
}