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


TypeScript trace.enable函數代碼示例

本文整理匯總了TypeScript中tns-core-modules/trace.enable函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript enable函數的具體用法?TypeScript enable怎麽用?TypeScript enable使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了enable函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: function

export var test_DummyTestForSnippetOnly2 = function () {
    // >> trace-message
    trace.setCategories(trace.categories.Debug);
    trace.enable();
    if (trace.isEnabled()) {
        trace.write("My Debug Message", trace.categories.Debug);
    }
    // << trace-message
}
開發者ID:NathanWalker,項目名稱:NativeScript,代碼行數:9,代碼來源:trace-tests.ts

示例2: tearDownModule

 6. (if exists) at the end of module test tearDownModule() module function is called
 
*/

import * as Application from "tns-core-modules/application";
import * as timer from "tns-core-modules/timer";
import * as trace from "tns-core-modules/trace";
import * as types from "tns-core-modules/utils/types";
import * as platform from "tns-core-modules/platform";
import { topmost } from "tns-core-modules/ui/frame";

import * as utils from "tns-core-modules/utils/utils";

const sdkVersion = parseInt(platform.device.sdkVersion);

trace.enable();

export interface TestInfoEntry {
    testFunc: () => void;
    instance: Object;
    isTest: boolean;
    testName: string;
    isPassed: boolean;
    errorMessage: string;
    testTimeout: number;
    duration: number;
}

export function time(): number {
    if (global.android) {
        return java.lang.System.nanoTime() / 1000000; // 1 ms = 1000000 ns
開發者ID:sitefinitysteve,項目名稱:NativeScript,代碼行數:31,代碼來源:TKUnit.ts

示例3: handleError

import { NgModule, NO_ERRORS_SCHEMA, ErrorHandler } from "@angular/core";
import { NativeScriptModule } from "nativescript-angular/nativescript.module";
import { AppRoutingModule, COMPONENTS } from "./app.routing";
import { AppComponent } from "./app.component";

import { DataService } from "./data.service";

import { enable as traceEnable, addCategories } from "tns-core-modules/trace";
import { routerTraceCategory } from "nativescript-angular/trace";

// addCategories(routerTraceCategory);
traceEnable();

class MyErrorHandler implements ErrorHandler {
    handleError(error) {
        console.log("### ErrorHandler Error: " + error.toString());
        console.log("### ErrorHandler Stack: " + error.stack);
    }
}

@NgModule({
    bootstrap: [
        AppComponent
    ],
    imports: [
        NativeScriptModule,
        AppRoutingModule
    ],
    declarations: [
        AppComponent,
        ...COMPONENTS
開發者ID:NathanWalker,項目名稱:nativescript-angular,代碼行數:31,代碼來源:app.module.ts

示例4: addCategories

} from "nativescript-angular/trace";
import { PAGE_FACTORY, PageFactory, PageFactoryOptions } from "nativescript-angular/platform-providers";
import { Page } from "tns-core-modules/ui/page";
import { Color } from "tns-core-modules/color";
import { log } from "tns-core-modules/profiling";

import { setCategories, addCategories, enable, categories } from "tns-core-modules/trace";
addCategories(bootstrapCategory);
// addCategories(rendererTraceCategory);
// addCategories(routerTraceCategory);
// addCategories(categories.ViewHierarchy);
// addCategories(categories.Layout);
// setCategories(routerTraceCategory);
// setCategories(listViewTraceCategory);
// setCategories(`${routeReuseStrategyTraceCategory}, ${routerTraceCategory}, ${viewUtilCategory}`);
enable();

import { RendererTest } from "./examples/renderer-test";
import { TabViewTest } from "./examples/tab-view/tab-view-test";
import { Benchmark } from "./performance/benchmark";
import { ListTest } from "./examples/list/list-test";
import { ListTemplateSelectorTest } from "./examples/list/template-selector";
import { ListTestAsync, ListTestFilterAsync } from "./examples/list/list-test-async";
import { ImageTest } from "./examples/image/image-test";
import { HttpTest } from "./examples/http/http-test";
import { HttpClientTest } from "./examples/http-client/http-client-test";
import { ActionBarTest } from "./examples/action-bar/action-bar-test";
import { PlatfromDirectivesTest } from "./examples/platform-directives/platform-directives-test";
import { LivesyncApp } from "./examples/livesync-test/livesync-test-app";

// modal
開發者ID:NathanWalker,項目名稱:nativescript-angular,代碼行數:31,代碼來源:app.ts


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