diff options
| author | Gregory Maxwell <[email protected]> | 2012-05-14 18:59:28 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-05-14 18:59:28 -0700 |
| commit | 20f19893cbaa37fd0c1a2cb29bdddfb709ec0d13 (patch) | |
| tree | c727e7b377b14d799fe5fcda718f31462331f041 /src/util.cpp | |
| parent | Merge pull request #906 from sje397/ValidateMessage (diff) | |
| parent | ensure that no double timestamps show up in the debug.log, by removing manual... (diff) | |
| download | discoin-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.cpp | 2 |
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 } |