diff options
| author | Gavin Andresen <[email protected]> | 2012-06-05 06:45:49 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-06-05 06:45:49 -0700 |
| commit | 45268208aec6630331238009a5758a2ff228b383 (patch) | |
| tree | 908066148badba1eb2b16e2f6e283d0d36b8e465 /src/init.cpp | |
| parent | Merge branch 'netopt' of https://github.com/sipa/bitcoin (diff) | |
| parent | add used datadir to debug.log (diff) | |
| download | discoin-45268208aec6630331238009a5758a2ff228b383.tar.xz discoin-45268208aec6630331238009a5758a2ff228b383.zip | |
Merge pull request #1422 from Diapolo/add_used_datadir_debug_log
add used datadir to debug.log
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 f6f443d77..bf9551e85 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -425,6 +425,7 @@ bool AppInit2() 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()); + printf("Used data directory %s\n", GetDataDir().string().c_str()); std::ostringstream strErrors; if (fDaemon) |