Details
Description
Our debug logging system currently deletes old log file when the size of log file reaches 10 MB. That is not good if there are so many repeat error pumping into log system. We will lose log we need to debug the failure.
One can change the number of files and limit of size of each file via, configuring the static_config file.
static config file
/opt/couchbase/etc/couchbase/static_config
{error_logger_mf_maxbytes, 10485760}.
{error_logger_mf_maxfiles, 20}.
But we still would not archive the older logs.