diff --git a/apps/back-end/src/module/youtube/base/base-action-handler.ts b/apps/back-end/src/module/youtube/base/base-action-handler.ts index 75a017d..ff86730 100644 --- a/apps/back-end/src/module/youtube/base/base-action-handler.ts +++ b/apps/back-end/src/module/youtube/base/base-action-handler.ts @@ -111,9 +111,9 @@ export abstract class BaseActionHandler maxAge, action })}`) if (age > maxAge) { - return + // return } } if (this.data.video.isMembersOnly && !track.allowMemberChat) { diff --git a/shared/base/base.processor.ts b/shared/base/base.processor.ts index 48d4fd1..a398c54 100644 --- a/shared/base/base.processor.ts +++ b/shared/base/base.processor.ts @@ -29,7 +29,9 @@ export abstract class BaseProcessor extends WorkerHost { @OnWorkerEvent('drained') onDrained() { - this.logger.debug('[DRAINED]') + if (this.debug) { + this.logger.debug('[DRAINED]') + } } @OnWorkerEvent('failed')