diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-01-01 16:34:23 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-01-16 00:25:46 +0000 |
commit | 5833d66f6540e7b34e10ddef37c2b67bd501994b (patch) | |
tree | e4d312059948a0528583e7ea58d2c0b40307a494 /tests/core_tests/chaingen.h | |
parent | easylogging++: fix logging with static const header only data members (diff) | |
download | monero-5833d66f6540e7b34e10ddef37c2b67bd501994b.tar.xz |
Change logging to easylogging++
This replaces the epee and data_loggers logging systems with
a single one, and also adds filename:line and explicit severity
levels. Categories may be defined, and logging severity set
by category (or set of categories). epee style 0-4 log level
maps to a sensible severity configuration. Log files now also
rotate when reaching 100 MB.
To select which logs to output, use the MONERO_LOGS environment
variable, with a comma separated list of categories (globs are
supported), with their requested severity level after a colon.
If a log matches more than one such setting, the last one in
the configuration string applies. A few examples:
This one is (mostly) silent, only outputting fatal errors:
MONERO_LOGS=*:FATAL
This one is very verbose:
MONERO_LOGS=*:TRACE
This one is totally silent (logwise):
MONERO_LOGS=""
This one outputs all errors and warnings, except for the
"verify" category, which prints just fatal errors (the verify
category is used for logs about incoming transactions and
blocks, and it is expected that some/many will fail to verify,
hence we don't want the spam):
MONERO_LOGS=*:WARNING,verify:FATAL
Log levels are, in decreasing order of priority:
FATAL, ERROR, WARNING, INFO, DEBUG, TRACE
Subcategories may be added using prefixes and globs. This
example will output net.p2p logs at the TRACE level, but all
other net* logs only at INFO:
MONERO_LOGS=*:ERROR,net*:INFO,net.p2p:TRACE
Logs which are intended for the user (which Monero was using
a lot through epee, but really isn't a nice way to go things)
should use the "global" category. There are a few helper macros
for using this category, eg: MGINFO("this shows up by default")
or MGINFO_RED("this is red"), to try to keep a similar look
and feel for now.
Existing epee log macros still exist, and map to the new log
levels, but since they're used as a "user facing" UI element
as much as a logging system, they often don't map well to log
severities (ie, a log level 0 log may be an error, or may be
something we want the user to see, such as an important info).
In those cases, I tried to use the new macros. In other cases,
I left the existing macros in. When modifying logs, it is
probably best to switch to the new macros with explicit levels.
The --log-level options and set_log commands now also accept
category settings, in addition to the epee style log levels.
Diffstat (limited to 'tests/core_tests/chaingen.h')
-rw-r--r-- | tests/core_tests/chaingen.h | 63 |
1 files changed, 13 insertions, 50 deletions
diff --git a/tests/core_tests/chaingen.h b/tests/core_tests/chaingen.h index ce204cd9d..04f910efc 100644 --- a/tests/core_tests/chaingen.h +++ b/tests/core_tests/chaingen.h @@ -52,45 +52,9 @@ #include "cryptonote_core/cryptonote_boost_serialization.h" #include "misc_language.h" +#undef MONERO_DEFAULT_LOG_CATEGORY +#define MONERO_DEFAULT_LOG_CATEGORY "tests.core" -namespace concolor -{ - inline std::basic_ostream<char, std::char_traits<char> >& bright_white(std::basic_ostream<char, std::char_traits<char> >& ostr) - { - epee::log_space::set_console_color(epee::log_space::console_color_white, true); - return ostr; - } - - inline std::basic_ostream<char, std::char_traits<char> >& red(std::basic_ostream<char, std::char_traits<char> >& ostr) - { - epee::log_space::set_console_color(epee::log_space::console_color_red, true); - return ostr; - } - - inline std::basic_ostream<char, std::char_traits<char> >& green(std::basic_ostream<char, std::char_traits<char> >& ostr) - { - epee::log_space::set_console_color(epee::log_space::console_color_green, true); - return ostr; - } - - inline std::basic_ostream<char, std::char_traits<char> >& magenta(std::basic_ostream<char, std::char_traits<char> >& ostr) - { - epee::log_space::set_console_color(epee::log_space::console_color_magenta, true); - return ostr; - } - - inline std::basic_ostream<char, std::char_traits<char> >& yellow(std::basic_ostream<char, std::char_traits<char> >& ostr) - { - epee::log_space::set_console_color(epee::log_space::console_color_yellow, true); - return ostr; - } - - inline std::basic_ostream<char, std::char_traits<char> >& normal(std::basic_ostream<char, std::char_traits<char> >& ostr) - { - epee::log_space::reset_console_color(); - return ostr; - } -} struct callback_entry @@ -446,7 +410,7 @@ public: private: void log_event(const std::string& event_type) const { - std::cout << concolor::yellow << "=== EVENT # " << m_ev_index << ": " << event_type << concolor::normal << std::endl; + MGINFO_YELLOW("=== EVENT # " << m_ev_index << ": " << event_type); } }; //-------------------------------------------------------------------------- @@ -505,7 +469,7 @@ inline bool do_replay_events(std::vector<test_event_entry>& events) get_test_options<t_test_class> gto; if (!c.init(vm, >o.test_options)) { - std::cout << concolor::magenta << "Failed to init core" << concolor::normal << std::endl; + MERROR("Failed to init core"); return false; } t_test_class validator; @@ -520,7 +484,7 @@ inline bool do_replay_file(const std::string& filename) std::vector<test_event_entry> events; if (!tools::unserialize_obj_from_file(events, filename)) { - std::cout << concolor::magenta << "Failed to deserialize data from file: " << filename << concolor::normal << std::endl; + MERROR("Failed to deserialize data from file: "); return false; } return do_replay_events<t_test_class>(events); @@ -625,7 +589,7 @@ inline bool do_replay_file(const std::string& filename) g.generate(events); \ if (!tools::serialize_obj_to_file(events, filename)) \ { \ - std::cout << concolor::magenta << "Failed to serialize data to file: " << filename << concolor::normal << std::endl; \ + MERROR("Failed to serialize data to file: " << filename); \ throw std::runtime_error("Failed to serialize data to file"); \ } \ } @@ -634,7 +598,7 @@ inline bool do_replay_file(const std::string& filename) #define PLAY(filename, genclass) \ if(!do_replay_file<genclass>(filename)) \ { \ - std::cout << concolor::magenta << "Failed to pass test : " << #genclass << concolor::normal << std::endl; \ + MERROR("Failed to pass test : " << #genclass); \ return 1; \ } @@ -650,34 +614,33 @@ inline bool do_replay_file(const std::string& filename) } \ catch (const std::exception& ex) \ { \ - LOG_PRINT(#genclass << " generation failed: what=" << ex.what(), 0); \ + MERROR(#genclass << " generation failed: what=" << ex.what()); \ } \ catch (...) \ { \ - LOG_PRINT(#genclass << " generation failed: generic exception", 0); \ + MERROR(#genclass << " generation failed: generic exception"); \ } \ if (generated && do_replay_events< genclass >(events)) \ { \ - std::cout << concolor::green << "#TEST# Succeeded " << #genclass << concolor::normal << '\n'; \ + MGINFO_GREEN("#TEST# Succeeded " << #genclass); \ } \ else \ { \ - std::cout << concolor::magenta << "#TEST# Failed " << #genclass << concolor::normal << '\n'; \ + MERROR("#TEST# Failed " << #genclass); \ failed_tests.push_back(#genclass); \ } \ - std::cout << std::endl; \ } #define CALL_TEST(test_name, function) \ { \ if(!function()) \ { \ - std::cout << concolor::magenta << "#TEST# Failed " << test_name << concolor::normal << std::endl; \ + MERROR("#TEST# Failed " << test_name); \ return 1; \ } \ else \ { \ - std::cout << concolor::green << "#TEST# Succeeded " << test_name << concolor::normal << std::endl; \ + MGINFO_GREEN("#TEST# Succeeded " << test_name); \ } \ } |