[MOD] Start preparing for an alpha

The (9)th.
This commit is contained in:
LDA 2024-09-01 21:19:24 +02:00
commit 34bd036ab7
6 changed files with 58 additions and 7 deletions

View file

@ -76,6 +76,7 @@ Main(Array *args, HashMap *env)
"%s - v%s[%s] (Cytoplasm %s)",
NAME, VERSION, CODE, CytoplasmGetVersionStr()
);
ParseePrintASCII();
Log(LOG_INFO, "=======================");
LogConfigIndent(LogConfigGlobal());
@ -224,8 +225,8 @@ Main(Array *args, HashMap *env)
}
Log(LOG_NOTICE, "Starting up local cronjobs...");
cron = CronCreate( 30 MINUTES );
CronEvery(cron, 1 HOURS, ParseeCleanup, conf.handlerArgs);
cron = CronCreate(10 SECONDS);
CronEvery(cron, 5 MINUTES, ParseeCleanup, conf.handlerArgs);
ParseeCleanup(conf.handlerArgs);
CronStart(cron);