You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include"Logger.h"
#include"RollingFileAppender.h"
RollingFileAppender* rollfile = new RollingFileAppender("test.log");
//roll every minute
rollfile->setDatePattern(RollingFileAppender::MinutelyRollover);
//3 logfile been retained
rollfile->setLogFilesLimit(3);
cuteLogger->registerCategoryAppender("categoryId",rollfile);
LOG_CERROR("categoryId")<<"roll every minute and retain 3 file";
The text was updated successfully, but these errors were encountered:
RollingFileAppender example
The text was updated successfully, but these errors were encountered: