Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

print config.ini & data-dir nodeos is using at launch #6222

Merged
merged 1 commit into from
Nov 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/appbase
3 changes: 2 additions & 1 deletion programs/nodeos/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ int main(int argc, char** argv)
return INITIALIZE_FAIL;
initialize_logging();
ilog("nodeos version ${ver}", ("ver", app().version_string()));
ilog("eosio root is ${root}", ("root", root.string()));
ilog("nodeos using configuration file ${c}", ("c", app().full_config_file_path().string()));
ilog("nodeos data directory is ${d}", ("d", app().data_dir().string()));
app().startup();
app().exec();
} catch( const extract_genesis_state_exception& e ) {
Expand Down