diff options
author | stoffu <stoffu@protonmail.ch> | 2018-06-01 12:29:26 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-06-13 12:44:27 +0900 |
commit | 63d0ab09b5445ce5d1dfa84d6600e61deef70601 (patch) | |
tree | e3a868d7d1633d825d5a30634f59ac677058d034 /contrib/epee/include/misc_log_ex.h | |
parent | Merge pull request #3866 (diff) | |
download | monero-63d0ab09b5445ce5d1dfa84d6600e61deef70601.tar.xz |
mlog: --max-log-files to set the max number of rotated log files
Diffstat (limited to 'contrib/epee/include/misc_log_ex.h')
-rw-r--r-- | contrib/epee/include/misc_log_ex.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/epee/include/misc_log_ex.h b/contrib/epee/include/misc_log_ex.h index 35ec0950b..530f8e636 100644 --- a/contrib/epee/include/misc_log_ex.h +++ b/contrib/epee/include/misc_log_ex.h @@ -34,6 +34,7 @@ #define MONERO_DEFAULT_LOG_CATEGORY "default" #define MAX_LOG_FILE_SIZE 104850000 // 100 MB - 7600 bytes +#define MAX_LOG_FILES 50 #define MCFATAL(cat,x) CLOG(FATAL,cat) << x #define MCERROR(cat,x) CLOG(ERROR,cat) << x @@ -105,7 +106,7 @@ #endif std::string mlog_get_default_log_path(const char *default_filename); -void mlog_configure(const std::string &filename_base, bool console, const std::size_t max_log_file_size = MAX_LOG_FILE_SIZE); +void mlog_configure(const std::string &filename_base, bool console, const std::size_t max_log_file_size = MAX_LOG_FILE_SIZE, const std::size_t max_log_files = MAX_LOG_FILES); void mlog_set_categories(const char *categories); std::string mlog_get_categories(); void mlog_set_log_level(int level); |