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 @bindThis
public async process(): Promise<void> { public async process(): Promise<void> {
this.logger.info('start.'); this.logger.debug('start.');
const meta = await this.metaService.fetch(false); const meta = await this.metaService.fetch(false);
if (!meta.disableRegistration) { if (!meta.disableRegistration) {
await this.processImpl(); await this.processImpl();
} else { } else {
this.logger.info('is already invitation only.'); this.logger.debug('is already invitation only.');
} }
this.logger.succ('finish.'); this.logger.debug('finish.');
} }
@bindThis @bindThis