當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Logger.debug方法代碼示例

本文整理匯總了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);
  }
開發者ID:ubiquits,項目名稱:quickstart,代碼行數:29,代碼來源:demo.seeder.ts

示例2: 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

示例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);
    });

  }
開發者ID:zakhenry,項目名稱:presentation,代碼行數:13,代碼來源:slides.component.ts

示例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(() => {
開發者ID:zakhenry,項目名稱:presentation,代碼行數:23,代碼來源:demo.seeder.ts

示例5: ngOnInit

 public ngOnInit() {
   this.logger.debug('initialized');
   if (typeof this.active == 'undefined'){
     this.active = true;
   }
 }
開發者ID:zakhenry,項目名稱:presentation,代碼行數:6,代碼來源:slide.component.ts

示例6:

      .then((instance: Slide) => {

        this.logger.debug('Demo model already seeded');
      })
開發者ID:zakhenry,項目名稱:presentation,代碼行數:4,代碼來源:demo.seeder.ts

示例7: logTest

 public logTest(message: string): void {
   this.logger.debug(message);
 }
開發者ID:ubiquits,項目名稱:quickstart,代碼行數:3,代碼來源:example.service.ts

示例8: ngOnInit

 public ngOnInit() {
   this.logger.debug('initialized');
 }
開發者ID:zakhenry,項目名稱:presentation,代碼行數:3,代碼來源:presentation.component.ts


注:本文中的@ubiquits/core/common.Logger.debug方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。