trace | UI-Router
Options
All
  • Public
  • Public/Protected
  • All
Menu

External module trace

UI-Router Transition Tracing

Enable transition tracing to print transition information to the console, in order to help debug your application. Tracing logs detailed information about each Transition to your console.

To enable tracing, import the trace singleton and enable one or more categories.

ES6


import {trace} from "ui-router-ng2"; // or "angular-ui-router"
trace.enable(1, 5); // TRANSITION and VIEWCONFIG

CJS


let trace = require("angular-ui-router").trace; // or "ui-router-ng2"
trace.enable("TRANSITION", "VIEWCONFIG");

Globals


let trace = window["angular-ui-router"].trace; // or "ui-router-ng2"
trace.enable(); // Trace everything (very verbose)
module

trace

Index

Enumerations

Classes

Variables

Variables

trace: Trace

The Trace singleton

The Trace singleton

example

import {trace} from "angular-ui-router";
trace.enable(1, 5);

Generated using TypeDoc