Witness Node
I moved the witness node to a new server. Just look at the beast:
- 50 GB RAM
- 1TB SSD
- Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz
Waiting for your blocks to be processed
A well known undocumented error is still just an undocumented error
I cannot be the only witness with following error when starting steemd:
main.cpp:133 main ] Error parsing logging config from config file
This error only occurs, when multiple entries for seed nodes are in the config.
Yet, a thorough Google search reveals nothing.
After exposing myself in some chats, that I know nothing, and some source reading, I got the answer:
Ah, yes, that is a well known old error when parsing the logging options from the config file. It can be ignored
what, really?
I dare you, I double dare you, to google that error.
Not one top witness ever wrote about it.
Or Google doesn't find it, which is the only search option for Steem.
Error is thrown here:
https://github.com/steemit/steem/blob/master/programs/steemd/main.cpp:
Line 133:
// try to get logging options from the config file.
try
{
fc::optional<fc::logging_config> logging_config = load_logging_config_from_ini_file(config_ini_path);
if (logging_config)
fc::configure_logging(*logging_config);
}
catch (const fc::exception&)
{
wlog("Error parsing logging config from config file ${config}, using default config", ("config", config_ini_path.preferred_string()));
}
Don't worry, it is now documented here and will be fixed soon.