本文整理汇总了TypeScript中@ubiquits/core/common.Logger类的典型用法代码示例。如果您正苦于以下问题:TypeScript Logger类的具体用法?TypeScript Logger怎么用?TypeScript Logger使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Logger类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(loggerBase: Logger,
private activatedRoute: ActivatedRoute,
private router: Router,
private store: SlideStore) {
this.logger = loggerBase.source('SlideComponent');
this.slideCollection$ = Observable.fromPromise(store.findMany());
this.slides$ = this.slideCollection$.flatMap(c => Observable.from(c));
this.slideCount$ = this.slides$.count();
}
开发者ID:zakhenry,项目名称:presentation,代码行数:11,代码来源:slides.component.ts
示例2: constructor
constructor(loggerBase: Logger, private route: ActivatedRoute, protected store: SlideStore) {
this.logger = loggerBase.source('PresenterComponent');
this.slideCollection$ = Observable.fromPromise(store.findMany());
}
开发者ID:zakhenry,项目名称:presentation,代码行数:4,代码来源:presenter.component.ts
示例3: 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);
}
开发者ID:ubiquits,项目名称:quickstart,代码行数:29,代码来源:demo.seeder.ts
示例4: handleTransition
public handleTransition(event: SlideTransitionEvent | HammerInput) {
this.logger.info('Slide transition called by controls cmp', event);
let currentId: number = +this.activatedRoute.snapshot.params['id'];
if (this.eventIsHammer(event)){
switch(event.type){
case 'swipeleft':
currentId++;
break;
case 'swiperight':
currentId--;
break;
}
} else {
if (event.direction == 'back') {
currentId--
} else {
currentId++
}
}
this.router.navigate(['slides', currentId])
.then((navRes: boolean) => {
console.log('nav res', navRes);
});
console.log(currentId, this.activatedRoute.snapshot);
}
开发者ID:zakhenry,项目名称:presentation,代码行数:30,代码来源:slides.component.ts
示例5: seed
public seed(): Promise<void> {
this.logger.info('Seeding database');
return this.slideStore.initialized()
.then(() => this.slideStore.findOne(process.env.DEMO_ID))
.then((instance: Slide) => {
this.logger.debug('Demo model already seeded');
})
.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(() => {
this.logger.info('Seeding Completed');
});
}
开发者ID:zakhenry,项目名称:presentation,代码行数:34,代码来源:demo.seeder.ts
示例6: ngOnInit
public ngOnInit() {
this.logger.debug('initialized');
this.route.url.subscribe((url: UrlPathWithParams[]) => {
this.logger.info('route info', url);
});
}
开发者ID:zakhenry,项目名称:presentation,代码行数:8,代码来源:presenter.component.ts
示例7: 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);
});
}
开发者ID:zakhenry,项目名称:presentation,代码行数:13,代码来源:slides.component.ts
示例8: 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(() => {
开发者ID:zakhenry,项目名称:presentation,代码行数:23,代码来源:demo.seeder.ts
示例9:
}).then(() => {
this.logger.info('Seeding Completed');
});
开发者ID:zakhenry,项目名称:presentation,代码行数:3,代码来源:demo.seeder.ts
注:本文中的@ubiquits/core/common.Logger类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论