本文整理汇总了TypeScript中@ubiquits/core/common.Logger.debug方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Logger.debug方法的具体用法?TypeScript Logger.debug怎么用?TypeScript Logger.debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@ubiquits/core/common.Logger
的用法示例。
在下文中一共展示了Logger.debug方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: seed
public async seed(): Promise<User[] > {
this.logger.info('Seeding db', this.userStore);
await this.userStore.initialized();
try {
const user: User = await this.userStore.findOne(process.env.DEMO_ID);
this.logger.debug('Demo model already seeded');
return [user];
} catch (e) {
if (!(e instanceof NotFoundException)) {
throw e;
}
}
this.logger.debug('Creating demo models');
const mockModel: User = await this.userMockStore.findOne();
let mockModels = [mockModel];
const dbUser: User = await this.userMockStore.findOne(process.env.DEMO_ID);
mockModels.push(dbUser);
const repo = await (this.userStore as UserDatabaseStore).getRepository();
return repo.persist(mockModels);
}
示例2: ngOnInit
public ngOnInit() {
this.logger.debug('initialized');
this.route.url.subscribe((url: UrlPathWithParams[]) => {
this.logger.info('route info', url);
});
}
示例3: ngOnInit
public ngOnInit() {
this.logger.debug('initialized');
this.activatedRoute.params.subscribe((params: any) => {
this.logger.info('route param', params);
this.currentSlideId = +params['id'];
});
this.activatedRoute.url.subscribe((url: UrlPathWithParams[]) => {
this.logger.info('route info', url);
});
}
示例4: return
.catch((e) => {
if (!(e instanceof NotFoundException)) {
throw e;
}
this.logger.debug('Creating demo models');
return this.slideMockStore.findOne()
.then((mockModel: Slide) => {
let mockModels = [mockModel];
return this.slideMockStore.findOne(1)
.then((slide: Slide) => {
mockModels.push(slide);
return (this.slideStore as SlideDatabaseStore).getRepository()
.then((repo: any) => repo.persistMany(...mockModels));
});
});
}).then(() => {
示例5: ngOnInit
public ngOnInit() {
this.logger.debug('initialized');
if (typeof this.active == 'undefined'){
this.active = true;
}
}
示例6:
.then((instance: Slide) => {
this.logger.debug('Demo model already seeded');
})
示例7: logTest
public logTest(message: string): void {
this.logger.debug(message);
}
示例8: ngOnInit
public ngOnInit() {
this.logger.debug('initialized');
}