diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-05-12 00:09:33 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-05-13 14:36:35 +0200 |
commit | 0985816bf6eef4fd7c6a1b4baa9da3c1510f7de5 (patch) | |
tree | 0f33a207943cdaaf5c32bd8beb7c8719ae8c2423 /src/util.cpp | |
parent | af4006b3f50b571c228987d3fe93998a64b50de5 (diff) |
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 170ea05139..823d00a4ee 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 } |