diff options
| author | Philip Kaufmann <[email protected]> | 2012-05-21 23:05:54 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-05-23 18:44:28 +0200 |
| commit | 41c6b8abc60f90e73ae4ad89b0a922638a61bbea (patch) | |
| tree | ec4c49d72b4ded330d0eccf282dbb1788af28a46 /src/init.cpp | |
| parent | Merge pull request #1342 from rebroad/LastSeenMinusMinus (diff) | |
| download | discoin-41c6b8abc60f90e73ae4ad89b0a922638a61bbea.tar.xz discoin-41c6b8abc60f90e73ae4ad89b0a922638a61bbea.zip | |
add client startup time as an entry to debug.log (note: logged time in debug.log differs by a few seconds from the one displayed in the Debug window) / make ClientModel::formatClientStartupTime() return a QString
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index c01dc2708..27a42025e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -414,6 +414,7 @@ bool AppInit2() ShrinkDebugFile(); printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"); printf("Bitcoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str()); + printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str()); printf("Default data directory %s\n", GetDefaultDataDir().string().c_str()); std::ostringstream strErrors; |