chore: email template

This commit is contained in:
xiaojunnuo
2025-12-12 23:39:09 +08:00
parent 43ba0b9da6
commit 437d956cad
8 changed files with 106 additions and 4 deletions
@@ -26,6 +26,7 @@ export class AutoZPrint {
async init() {
//监听https
this.startHttpsServer();
logger.info("ENV:", process.env.NODE_ENV);
if (isDev()) {
this.startHeapLog();
}
@@ -49,7 +50,7 @@ export class AutoZPrint {
setInterval(() => {
const mu = process.memoryUsage();
logger.info(`rss:${format(mu.rss)},heapUsed: ${format(mu.heapUsed)},heapTotal: ${format(mu.heapTotal)},external: ${format(mu.external)}`);
}, 60000);
}, 20000);
}
startHttpsServer() {