chore(): cleanup debug code

This commit is contained in:
Alexander Bukhalo
2021-01-02 01:32:49 +03:00
parent 841ba6e6a0
commit 3d7ecbd7f2
2 changed files with 2 additions and 10 deletions

View File

@@ -7,7 +7,6 @@ import {
Global,
Inject,
OnApplicationShutdown,
Logger,
} from '@nestjs/common';
import {
TelegrafModuleOptions,
@@ -29,14 +28,10 @@ import { defer } from 'rxjs';
providers: [UpdatesExplorerService, MetadataAccessorService],
})
export class TelegrafCoreModule implements OnApplicationShutdown {
private readonly logger = new Logger(TelegrafCoreModule.name);
constructor(
@Inject(TELEGRAF_BOT_NAME) private readonly botName: string,
private readonly moduleRef: ModuleRef,
) {
this.logger.debug(botName);
}
) {}
public static forRoot(options: TelegrafModuleOptions): DynamicModule {
const telegrafBotName = getBotToken(options.botName);