diff options
| author | Philip Kaufmann <[email protected]> | 2012-05-12 00:09:33 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-05-13 14:36:35 +0200 |
| commit | 0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5 (patch) | |
| tree | 0f33a207943cdaaf5c32bd8beb7c8719ae8c2423 /src/util.cpp | |
| parent | Enforce -nodiscover better (diff) | |
| download | discoin-0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5.tar.xz discoin-0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5.zip | |
ensure that no double timestamps show up in the debug.log, by removing manual timestamps from the source (now only -logtimestamps parameter adds timestamps to 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 } |