[EOSIO/eos] Migrate net plugin to slim (#2625)
Похожие записи
- [EOSIO/eos] SIGABRT in net_plugin (#2324)
PR #2327 has added extra protection for uninitialized pending_fetch
- [EOSIO/eos] Modify net_plugin's logging initialization (#2431)
spoonincode commented on this pull request. > @@ -265,7 +265,7 @@ namespace eosio { }; const fc::string logger_name("net_plugin_impl"); - fc::logger logger(logger_name); + fc::logger logger; Yes, that's correct. Not saying it's the best approach.
- [EOSIO/eos] Modify net_plugin's logging initialization (#2431)
jgiszczak commented on this pull request. > @@ -265,7 +265,7 @@ namespace eosio { }; const fc::string logger_name("net_plugin_impl"); - fc::logger logger(logger_name); + fc::logger logger; So if a logger named "net_plugin_impl" doesn't appear in the config…
- [EOSIO/eos] Remove log-level-net-plugin option completely (#2435)
Not ready I need to figure out how to change the tests
- [EOSIO/eos] Modify net_plugin's logging initialization (#2431)
Change net_plugin to ask for its logger vs pushing a logger in to the logging framework. This allows net_plugin to honor the logging.json configuration easier. Non-contentious change: no longer can you log-level-net-plugin to change the…