1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

reduce log spam from CheckModeratorsActivityProcessorService

This commit is contained in:
Hazelnoot
2025-05-22 09:54:28 -04:00
parent 6d6e1dc0c0
commit 7acd37fda0

View File

@@ -98,16 +98,16 @@ export class CheckModeratorsActivityProcessorService {
@bindThis
public async process(): Promise<void> {
this.logger.info('start.');
this.logger.debug('start.');
const meta = await this.metaService.fetch(false);
if (!meta.disableRegistration) {
await this.processImpl();
} else {
this.logger.info('is already invitation only.');
this.logger.debug('is already invitation only.');
}
this.logger.succ('finish.');
this.logger.debug('finish.');
}
@bindThis